Skip to content

Commit

Permalink
chore: release v1.0.20
Browse files Browse the repository at this point in the history
ensure compatibility with future controller versions
  • Loading branch information
foxriver76 committed Dec 4, 2021
1 parent ec43e3c commit 0cafffa
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,9 @@ You can enable polling in admin via objects configuration.
-->

## Changelog
### 1.0.20 (2021-12-04)
* (foxriver76) ensure compatibility with future controller versions

### 1.0.19 (2021-05-28)
* (bluefox) added support for Admin5

Expand Down
19 changes: 18 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
{
"common": {
"name": "upnp",
"version": "1.0.19",
"version": "1.0.20",
"title": "UPnP",
"titleLang": {
"en": "UPnP",
"de": "UPnP"
},
"news": {
"1.0.20": {
"en": "ensure compatibility with future controller versions",
"de": "Gewährleistung der Kompatibilität mit zukünftigen Controller-Versionen",
"ru": "обеспечить совместимость с будущими версиями контроллеров",
"pt": "garantir a compatibilidade com futuras versões do controlador",
"nl": "zorgen voor compatibiliteit met toekomstige controllerversies",
"fr": "assurer la compatibilité avec les futures versions du contrôleur",
"it": "garantire la compatibilità con le future versioni del controller",
"es": "garantizar la compatibilidad con futuras versiones del controlador",
"pl": "zapewnić kompatybilność z przyszłymi wersjami sterownika",
"zh-cn": "确保与未来的控制器版本兼容"
},
"1.0.19": {
"en": "added support for Admin5",
"de": "Unterstützung für Admin5 hinzugefügt",
Expand Down Expand Up @@ -116,6 +128,11 @@
"name": "Jey Cee",
"email": "[email protected]"
}
],
"globalDependencies": [
{
"js-controller": ">=3.3.0"
}
]
},
"native": {
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ function sendCommand(id, cb) {

function readSchedules() {
return new Promise(resolve => {
adapter.getObjectView('custom', 'state', {startkey: adapter.namespace + '.', endkey: adapter.namespace + '.\uFFFF'}, (err, doc) => {
adapter.getObjectView('system', 'custom', {startkey: adapter.namespace + '.', endkey: adapter.namespace + '.\uFFFF'}, (err, doc) => {
if (doc && doc.rows) {
for (let i = 0, l = doc.rows.length; i < l; i++) {
if (doc.rows[i].value) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.upnp",
"version": "1.0.19",
"version": "1.0.20",
"description": "UPnP is looking for UPnP devices on Local Network",
"author": {
"name": "Jey Cee",
Expand Down

0 comments on commit 0cafffa

Please sign in to comment.