iobroker.lorawan 1.22.20 → 1.22.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/io-package.json +14 -14
- package/lib/modules/bridge.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
24
24
|
Placeholder for the next version (at the beginning of the line):
|
|
25
25
|
### **WORK IN PROGRESS**
|
|
26
26
|
-->
|
|
27
|
+
### 1.22.21 (2026-06-16)
|
|
28
|
+
- (BenAhrdt) Changed setTimeout to this.adapter.setTimeout
|
|
29
|
+
|
|
27
30
|
### 1.22.20 (2026-06-16)
|
|
28
31
|
- (BenAhrdt) Write publishIds and subscribedTopics delayed
|
|
29
32
|
|
|
@@ -36,9 +39,6 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
36
39
|
### 1.22.17 (2026-06-07)
|
|
37
40
|
- (BenAhrdt) Fixed writing valid zero values from bridged Home Assistant entities to ioBroker states.
|
|
38
41
|
|
|
39
|
-
### 1.22.16 (2026-06-06)
|
|
40
|
-
- (BenAhrdt) Bugfix COver in ToIob
|
|
41
|
-
|
|
42
42
|
[Older changes can be found there](CHANGELOG_OLD.md)
|
|
43
43
|
|
|
44
44
|
## License
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.21",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.22.21": {
|
|
7
|
+
"en": "Changed setTimeout to this.adapter.setTimeout",
|
|
8
|
+
"de": "Geändert setTimeout zu this.adapter.setTimeout",
|
|
9
|
+
"ru": "Изменить setTimeout на this.adapter.setTimeout",
|
|
10
|
+
"pt": "SetTimeout alterado para este.adapter.setTimeout",
|
|
11
|
+
"nl": "Veranderde setTimeout naar deze.adapter.setTimeout",
|
|
12
|
+
"fr": "Changed setTimeout to this.adapter.setTimeout",
|
|
13
|
+
"it": "Modificato il timeout a questo.adapter.setTimeout",
|
|
14
|
+
"es": "Cambio de configuraciónTiempo a este.adapter.setTimeout",
|
|
15
|
+
"pl": "Zmieniono timeout do tego. Adapter. setTimeout",
|
|
16
|
+
"uk": "Змінено setTimeout в this.adapter.setTimeout",
|
|
17
|
+
"zh-cn": "更改了设置 Timeout 到此. adapter. set Timeout"
|
|
18
|
+
},
|
|
6
19
|
"1.22.20": {
|
|
7
20
|
"en": "Write publishIds and subscribedTopics delayed",
|
|
8
21
|
"de": "Write publishIds und abonnierteTopics verzögert",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Dodaj role dla niektórych nowych urządzeń",
|
|
81
94
|
"uk": "Додати ролі для деяких нових пристроїв",
|
|
82
95
|
"zh-cn": "为一些新设备添加角色"
|
|
83
|
-
},
|
|
84
|
-
"1.22.14": {
|
|
85
|
-
"en": "ToIob suports hs mode for color (light)\nissues from depandabot",
|
|
86
|
-
"de": "ToIob suports hs mode für color (light)\nfragen von depandabot",
|
|
87
|
-
"ru": "ToIob suports hs режим для цвета (свет)\nотзывы о depandabot",
|
|
88
|
-
"pt": "Modo de suporte do ToIob hs para cores (luz)\nquestões do depandabot",
|
|
89
|
-
"nl": "ToIob suports hs-modus voor kleur (licht)\nproblemen van depandabot",
|
|
90
|
-
"fr": "Mode TOIobs hs pour la couleur (lumière)\ndepandabot",
|
|
91
|
-
"it": "ToIob suports hs modalità per colore (luce)\nproblemi da depandabot",
|
|
92
|
-
"es": "ToIob suports hs modo para el color (light)\ncuestiones de depandabot",
|
|
93
|
-
"pl": "Tolob suports tryb hs dla koloru (światła)\nkwestie związane z depandabot",
|
|
94
|
-
"uk": "ToIob suports hs режим для кольору (світло)\nпитання від depandabot",
|
|
95
|
-
"zh-cn": "颜色的 ToIob suports hs 模式( 浅色)\n发件人的问题"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -388,7 +388,7 @@ class bridgeClass extends EventEmiter {
|
|
|
388
388
|
return;
|
|
389
389
|
}
|
|
390
390
|
|
|
391
|
-
this.subscribedTopicsWriteTimer = setTimeout(async () => {
|
|
391
|
+
this.subscribedTopicsWriteTimer = this.adapter.setTimeout(async () => {
|
|
392
392
|
this.subscribedTopicsWriteTimer = undefined;
|
|
393
393
|
|
|
394
394
|
await this.adapter.setState(
|
|
@@ -1387,7 +1387,7 @@ class bridgeClass extends EventEmiter {
|
|
|
1387
1387
|
return;
|
|
1388
1388
|
}
|
|
1389
1389
|
|
|
1390
|
-
this.publishedIdsWriteTimer = setTimeout(async () => {
|
|
1390
|
+
this.publishedIdsWriteTimer = this.adapter.setTimeout(async () => {
|
|
1391
1391
|
this.publishedIdsWriteTimer = undefined;
|
|
1392
1392
|
|
|
1393
1393
|
try {
|