iobroker.lorawan 1.22.22 → 1.22.23
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 +1 -1
- 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.23 (2026-06-17)
|
|
28
|
+
- (BenAhrdt) setTimeout changed into this.adapter.SetTimeout
|
|
29
|
+
|
|
27
30
|
### 1.22.22 (2026-06-16)
|
|
28
31
|
- (BenAhrdt) Remove writing of the last 10 values at receive and public message
|
|
29
32
|
|
|
@@ -36,9 +39,6 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
36
39
|
### 1.22.19 (2026-06-16)
|
|
37
40
|
- (BenAhrdt) Test durch fehlerhaften git commit
|
|
38
41
|
|
|
39
|
-
### 1.22.18 (2026-06-16)
|
|
40
|
-
- (BenAhrdt) Testversion, ohne info. schreiben
|
|
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.23",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.22.23": {
|
|
7
|
+
"en": "setTimeout changed into this.adapter.SetTimeout",
|
|
8
|
+
"de": "setTimeout wurde in this.adapter geändert. SetTimeout",
|
|
9
|
+
"ru": "setTimeout изменился на этот.adapter. Установить время",
|
|
10
|
+
"pt": "setTimeout mudou para este.adapter. SetTimeout",
|
|
11
|
+
"nl": "setTimeout is veranderd in deze.adapter. SetTimeout",
|
|
12
|
+
"fr": "setTimeout a changé en ceci.adaptateur. Réglage des délais",
|
|
13
|
+
"it": "setTimeout è cambiato in questo.adapter. SetTimes",
|
|
14
|
+
"es": "setTimeout cambió en este.adapter. SetTimeout",
|
|
15
|
+
"pl": "set Timeout zmienił się w to. Adapter. Ustawienie timeout",
|
|
16
|
+
"uk": "setTimeout змінився в this.adapter. Навігація",
|
|
17
|
+
"zh-cn": "timeout 已更改为此。 adapter。 设置超时"
|
|
18
|
+
},
|
|
6
19
|
"1.22.22": {
|
|
7
20
|
"en": "Remove writing of the last 10 values at receive and public message",
|
|
8
21
|
"de": "Entfernen Sie das Schreiben der letzten 10 Werte bei Empfang und öffentliche Nachricht",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Naprawiono pisanie poprawnych wartości zerowych z zaokrąglonych jednostek Home Assistant do stanów jOBroker.",
|
|
81
94
|
"uk": "Фіксоване написання дійсних нульових значень з містованих домашніх помічників для ioBroker штатів.",
|
|
82
95
|
"zh-cn": "固定写入有效的零值,从桥接的家用助理实体到ioBroker状态."
|
|
83
|
-
},
|
|
84
|
-
"1.22.16": {
|
|
85
|
-
"en": "Bugfix COver in ToIob",
|
|
86
|
-
"de": "Bugfix COver in ToIob",
|
|
87
|
-
"ru": "Bugfix COver в ToIob",
|
|
88
|
-
"pt": "Correção de Erros no Tolob",
|
|
89
|
-
"nl": "Bugfix COver in Toiob",
|
|
90
|
-
"fr": "Bugfix Cover dans TOIob",
|
|
91
|
-
"it": "Bugfix COver in ToIob",
|
|
92
|
-
"es": "Bugfix COver en ToIob",
|
|
93
|
-
"pl": "Bugfix Cover w Tołobie",
|
|
94
|
-
"uk": "Бугфікс Ковер в Тойоб",
|
|
95
|
-
"zh-cn": "在 ToIob 中错误修正 Cover"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1271,7 +1271,7 @@ class bridgeClass extends EventEmiter {
|
|
|
1271
1271
|
return;
|
|
1272
1272
|
}
|
|
1273
1273
|
|
|
1274
|
-
this.discoveredIdsWriteTimer = setTimeout(async () => {
|
|
1274
|
+
this.discoveredIdsWriteTimer = this.adapter.setTimeout(async () => {
|
|
1275
1275
|
this.discoveredIdsWriteTimer = undefined;
|
|
1276
1276
|
|
|
1277
1277
|
try {
|