Skip to content

Commit 0cafffa

Browse files
committed
chore: release v1.0.20
ensure compatibility with future controller versions
1 parent ec43e3c commit 0cafffa

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,9 @@ You can enable polling in admin via objects configuration.
222222
-->
223223

224224
## Changelog
225+
### 1.0.20 (2021-12-04)
226+
* (foxriver76) ensure compatibility with future controller versions
227+
225228
### 1.0.19 (2021-05-28)
226229
* (bluefox) added support for Admin5
227230

io-package.json

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
{
22
"common": {
33
"name": "upnp",
4-
"version": "1.0.19",
4+
"version": "1.0.20",
55
"title": "UPnP",
66
"titleLang": {
77
"en": "UPnP",
88
"de": "UPnP"
99
},
1010
"news": {
11+
"1.0.20": {
12+
"en": "ensure compatibility with future controller versions",
13+
"de": "Gewährleistung der Kompatibilität mit zukünftigen Controller-Versionen",
14+
"ru": "обеспечить совместимость с будущими версиями контроллеров",
15+
"pt": "garantir a compatibilidade com futuras versões do controlador",
16+
"nl": "zorgen voor compatibiliteit met toekomstige controllerversies",
17+
"fr": "assurer la compatibilité avec les futures versions du contrôleur",
18+
"it": "garantire la compatibilità con le future versioni del controller",
19+
"es": "garantizar la compatibilidad con futuras versiones del controlador",
20+
"pl": "zapewnić kompatybilność z przyszłymi wersjami sterownika",
21+
"zh-cn": "确保与未来的控制器版本兼容"
22+
},
1123
"1.0.19": {
1224
"en": "added support for Admin5",
1325
"de": "Unterstützung für Admin5 hinzugefügt",
@@ -116,6 +128,11 @@
116128
"name": "Jey Cee",
117129
"email": "[email protected]"
118130
}
131+
],
132+
"globalDependencies": [
133+
{
134+
"js-controller": ">=3.3.0"
135+
}
119136
]
120137
},
121138
"native": {

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ function sendCommand(id, cb) {
17311731

17321732
function readSchedules() {
17331733
return new Promise(resolve => {
1734-
adapter.getObjectView('custom', 'state', {startkey: adapter.namespace + '.', endkey: adapter.namespace + '.\uFFFF'}, (err, doc) => {
1734+
adapter.getObjectView('system', 'custom', {startkey: adapter.namespace + '.', endkey: adapter.namespace + '.\uFFFF'}, (err, doc) => {
17351735
if (doc && doc.rows) {
17361736
for (let i = 0, l = doc.rows.length; i < l; i++) {
17371737
if (doc.rows[i].value) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.upnp",
3-
"version": "1.0.19",
3+
"version": "1.0.20",
44
"description": "UPnP is looking for UPnP devices on Local Network",
55
"author": {
66
"name": "Jey Cee",

0 commit comments

Comments
 (0)