iobroker.lorawan 1.18.20 → 1.18.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 -0
- package/io-package.json +14 -14
- package/lib/modules/bridge.js +1 -1
- 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.18.21 (2025-11-26)
|
|
27
|
+
* (BenAhrdt) Bugfix reading value for light in puslish
|
|
28
|
+
|
|
26
29
|
### 1.18.20 (2025-11-26)
|
|
27
30
|
* (BenAhrdt) Dont write discovery multiple in internal object (in case of reconnect bridge)
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.21",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.21": {
|
|
7
|
+
"en": "Bugfix reading value for light in puslish",
|
|
8
|
+
"de": "Bugfix Lesewert für Licht in puslish",
|
|
9
|
+
"ru": "Bugfix значение чтения для света в puslish",
|
|
10
|
+
"pt": "Valor de leitura de erros para a luz em puslish",
|
|
11
|
+
"nl": "Bugfix leeswaarde voor licht in het Nederlands",
|
|
12
|
+
"fr": "Valeur de lecture Bugfix pour la lumière en puslish",
|
|
13
|
+
"it": "Bugfix valore di lettura per la luce in inglese",
|
|
14
|
+
"es": "Valor de lectura de Bugfix para luz en puslish",
|
|
15
|
+
"pl": "Wartość odczytu bugfix dla światła w pussish",
|
|
16
|
+
"uk": "Помилки для читання значення для світла в puslish",
|
|
17
|
+
"zh-cn": "Puslish 中的光线错误修正读值"
|
|
18
|
+
},
|
|
6
19
|
"1.18.20": {
|
|
7
20
|
"en": "Dont write discovery multiple in internal object (in case of reconnect bridge)",
|
|
8
21
|
"de": "Schreibe nicht mehrere Entdeckungen im internen Objekt (im Falle der Wiederverbindungsbrücke)",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodaj '#' do znormalizowanego String",
|
|
81
94
|
"uk": "додати '#' для нормалізації String",
|
|
82
95
|
"zh-cn": "添加“ # ” 到正态字符串"
|
|
83
|
-
},
|
|
84
|
-
"1.18.14": {
|
|
85
|
-
"en": "add Cover to special devices",
|
|
86
|
-
"de": "cover für spezielle Geräte hinzufügen",
|
|
87
|
-
"ru": "добавление обложки к специальным устройствам",
|
|
88
|
-
"pt": "adicionar Capa a dispositivos especiais",
|
|
89
|
-
"nl": "cover toevoegen aan speciale apparaten",
|
|
90
|
-
"fr": "ajouter Couverture aux dispositifs spéciaux",
|
|
91
|
-
"it": "aggiungere Cover a dispositivi speciali",
|
|
92
|
-
"es": "añadir cobertura a dispositivos especiales",
|
|
93
|
-
"pl": "dodaj pokrycie do specjalnych urządzeń",
|
|
94
|
-
"uk": "додати чохол на спеціальні пристрої",
|
|
95
|
-
"zh-cn": "将封面添加到特殊设备"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -759,7 +759,7 @@ class bridgeClass {
|
|
|
759
759
|
val = {};
|
|
760
760
|
val.state = (
|
|
761
761
|
await this.adapter.getForeignStateAsync(
|
|
762
|
-
this.PublishedIds[id].publish[publishTopic].
|
|
762
|
+
this.PublishedIds[id].publish[publishTopic].LightIds.onOff,
|
|
763
763
|
)
|
|
764
764
|
).val;
|
|
765
765
|
val.state = val.state === true ? 'ON' : 'OFF';
|