iobroker.lorawan 1.18.10 → 1.18.11
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 +7 -4
- 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.11 (2025-11-23)
|
|
27
|
+
* (BenAhrdt) Bugfix fx for published ids
|
|
28
|
+
|
|
26
29
|
### 1.18.10 (2025-11-23)
|
|
27
30
|
* (BenAhrdt) Effects for Lights in common.states
|
|
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.11",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.11": {
|
|
7
|
+
"en": "Bugfix fx for published ids",
|
|
8
|
+
"de": "Bugfix fx für veröffentlichte ids",
|
|
9
|
+
"ru": "Bugfix fx для опубликованных идентификаторов",
|
|
10
|
+
"pt": "Bugfix fx para IDs publicados",
|
|
11
|
+
"nl": "Bugfix fx voor gepubliceerde id's",
|
|
12
|
+
"fr": "Bugfix fx pour les ids publiés",
|
|
13
|
+
"it": "Bugfix fx per ids pubblicati",
|
|
14
|
+
"es": "Fx Bugfix para los ids publicados",
|
|
15
|
+
"pl": "Bugfix fx dla opublikowanych idów",
|
|
16
|
+
"uk": "Bugfix fx для опублікованих ids",
|
|
17
|
+
"zh-cn": "已发布 ID 的臭虫fx"
|
|
18
|
+
},
|
|
6
19
|
"1.18.10": {
|
|
7
20
|
"en": "Effects for Lights in common.states",
|
|
8
21
|
"de": "Effekte für Lichter gemeinsam. Staaten",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodaj mieszany do tekstu dla wartości kolorów",
|
|
81
94
|
"uk": "додати змішаний для типу текст для значень кольору",
|
|
82
95
|
"zh-cn": "在颜色值类型中添加混合文本"
|
|
83
|
-
},
|
|
84
|
-
"1.18.4": {
|
|
85
|
-
"en": "Change unique id for lorawan internal standard states\nChange sequence of dicovery and check downlinks at startup",
|
|
86
|
-
"de": "Ändern Sie einzigartige id für lorawan interne Standardzustände\nÄndern Sie die Reihenfolge der Dicovery und überprüfen Sie Downlinks beim Start",
|
|
87
|
-
"ru": "Изменение уникального идентификатора для внутренних стандартных состояний Lorawan\nИзмените последовательность обнаружения и проверьте нисходящие ссылки при запуске",
|
|
88
|
-
"pt": "Mudar o ID único para estados padrão internos do lorawan\nAltere a sequência de dicovery e verifique os links abaixo na inicialização",
|
|
89
|
-
"nl": "Wijzig unieke id voor Lorawan interne standaardstaten\nVerander de sequentie van de dicovery en controleer downlinks bij opstarten",
|
|
90
|
-
"fr": "Modifier l'identifiant unique pour les états standard internes de lorawan\nChanger la séquence de dicovery et vérifier les liens descendants au démarrage",
|
|
91
|
-
"it": "Cambiare id unico per lorawan stati standard interni\nModificare la sequenza di scoperta e controllare downlink all'avvio",
|
|
92
|
-
"es": "Cambio único id para los estados estándar internos de Lorawan\nCambio de secuencia de descubrimiento y check downlinks al inicio",
|
|
93
|
-
"pl": "Zmiana niepowtarzalnego identyfikatora dla stanów wewnętrznych Lorawan\nZmień sekwencję dicovery i sprawdź linki w dół przy starcie",
|
|
94
|
-
"uk": "Зміна унікальних ідентифікаторів для внутрішніх стандартних станів лоурен\nЗміна послідовності дифективних і контрольних посилань при запуску",
|
|
95
|
-
"zh-cn": "更改 Lorawan 内部标准状态的独有 ID\n更改隐藏的顺序并在启动时检查下行链路"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -2248,6 +2248,9 @@ class bridgeClass {
|
|
|
2248
2248
|
{ light: true, LightIds: config.LightIds, effects: effectSet },
|
|
2249
2249
|
);
|
|
2250
2250
|
|
|
2251
|
+
// Define Additional Object for Published Ids
|
|
2252
|
+
const additionalObject = { light: true, LightIds: config.LightIds, effects: effectState };
|
|
2253
|
+
|
|
2251
2254
|
// Assign published Ids
|
|
2252
2255
|
this.assignIdStructure(
|
|
2253
2256
|
this.PublishedIds,
|
|
@@ -2258,7 +2261,7 @@ class bridgeClass {
|
|
|
2258
2261
|
DiscoveryTopic,
|
|
2259
2262
|
DiscoveryPayload,
|
|
2260
2263
|
`${lightTopic}${this.EndingState}`,
|
|
2261
|
-
|
|
2264
|
+
additionalObject,
|
|
2262
2265
|
);
|
|
2263
2266
|
|
|
2264
2267
|
if (config.LightBrightness) {
|
|
@@ -2271,7 +2274,7 @@ class bridgeClass {
|
|
|
2271
2274
|
DiscoveryTopic,
|
|
2272
2275
|
DiscoveryPayload,
|
|
2273
2276
|
`${lightTopic}${this.EndingState}`,
|
|
2274
|
-
|
|
2277
|
+
additionalObject,
|
|
2275
2278
|
);
|
|
2276
2279
|
}
|
|
2277
2280
|
|
|
@@ -2285,7 +2288,7 @@ class bridgeClass {
|
|
|
2285
2288
|
DiscoveryTopic,
|
|
2286
2289
|
DiscoveryPayload,
|
|
2287
2290
|
`${lightTopic}${this.EndingState}`,
|
|
2288
|
-
|
|
2291
|
+
additionalObject,
|
|
2289
2292
|
);
|
|
2290
2293
|
}
|
|
2291
2294
|
|
|
@@ -2299,7 +2302,7 @@ class bridgeClass {
|
|
|
2299
2302
|
DiscoveryTopic,
|
|
2300
2303
|
DiscoveryPayload,
|
|
2301
2304
|
`${lightTopic}${this.EndingState}`,
|
|
2302
|
-
|
|
2305
|
+
additionalObject,
|
|
2303
2306
|
);
|
|
2304
2307
|
}
|
|
2305
2308
|
|