iobroker.lorawan 1.19.9 → 1.19.10
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 -0
- package/io-package.json +14 -14
- package/main.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
23
23
|
Placeholder for the next version (at the beginning of the line):
|
|
24
24
|
### **WORK IN PROGRESS**
|
|
25
25
|
-->
|
|
26
|
+
### 1.19.10 (2026-01-05)
|
|
27
|
+
* (BenAhrdt) bugfix reading state
|
|
28
|
+
|
|
26
29
|
### 1.19.9 (2026-01-05)
|
|
27
30
|
* (BenAhrdt) bugfix deleteing device
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.19.
|
|
4
|
+
"version": "1.19.10",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.19.10": {
|
|
7
|
+
"en": "bugfix reading state",
|
|
8
|
+
"de": "bugfix lesezustand",
|
|
9
|
+
"ru": "bugfix состояние чтения",
|
|
10
|
+
"pt": "estado de leitura do bugfix",
|
|
11
|
+
"nl": "bugfix-leesstatus",
|
|
12
|
+
"fr": "état de lecture du bugfix",
|
|
13
|
+
"it": "bugfix lettura stato",
|
|
14
|
+
"es": "estado de lectura de bugfix",
|
|
15
|
+
"pl": "stan odczytu bugfix",
|
|
16
|
+
"uk": "стан читання помилок",
|
|
17
|
+
"zh-cn": "错误修正读取状态"
|
|
18
|
+
},
|
|
6
19
|
"1.19.9": {
|
|
7
20
|
"en": "bugfix deleteing device",
|
|
8
21
|
"de": "bugfix löschgerät",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "zmień budowę SafeState Id (domena)",
|
|
81
94
|
"uk": "збір змін Сейфи Id (домен)",
|
|
82
95
|
"zh-cn": "变化构建 安全状态 ID( 域数)"
|
|
83
|
-
},
|
|
84
|
-
"1.19.3": {
|
|
85
|
-
"en": "add version and domain to automation",
|
|
86
|
-
"de": "version und domäne zur automatisierung hinzufügen",
|
|
87
|
-
"ru": "добавить версию и домен в автоматизацию",
|
|
88
|
-
"pt": "adicionar versão e domínio à automação",
|
|
89
|
-
"nl": "versie en domein toevoegen aan automatisering",
|
|
90
|
-
"fr": "ajouter version et domaine à l'automatisation",
|
|
91
|
-
"it": "aggiungere la versione e il dominio all'automazione",
|
|
92
|
-
"es": "añadir versión y dominio a automatización",
|
|
93
|
-
"pl": "dodawanie wersji i domeny do automatyzacji",
|
|
94
|
-
"uk": "додати версію та домен до автоматизації",
|
|
95
|
-
"zh-cn": "在自动化中添加版本和域"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/main.js
CHANGED
|
@@ -877,8 +877,12 @@ class Lorawan extends utils.Adapter {
|
|
|
877
877
|
await this.bridge.publishId(id, state.val, {});
|
|
878
878
|
}
|
|
879
879
|
} else if (id.startsWith(`${this.namespace}.bridge.devices.`)) {
|
|
880
|
-
|
|
881
|
-
|
|
880
|
+
if (!id.endsWith('discoveredEntities')) {
|
|
881
|
+
if (!id.endsWith('bridgeBaseIp')) {
|
|
882
|
+
await this.bridge?.bridgeDeviceHandler.sendData(id, state);
|
|
883
|
+
}
|
|
884
|
+
await this.setState(id, state.val, true);
|
|
885
|
+
}
|
|
882
886
|
}
|
|
883
887
|
} else {
|
|
884
888
|
// Query for 0_userdata or alias => states also publish with ack = false
|