iobroker.lorawan 1.15.5 → 1.15.6
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 +2 -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.15.6 (2025-09-15)
|
|
27
|
+
* (BenAhrdt) improve handling of state device in case of subfolders
|
|
28
|
+
|
|
26
29
|
### 1.15.5 (2025-09-15)
|
|
27
30
|
* (BenAhrdt) Bugfix logging removed
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.15.
|
|
4
|
+
"version": "1.15.6",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.15.6": {
|
|
7
|
+
"en": "improve handling of state device in case of subfolders",
|
|
8
|
+
"de": "Verbessere die Handhabung des Gerätestatus bei Unterordnern.",
|
|
9
|
+
"ru": "Улучшено управление устройствами состояний в случае подпапок.",
|
|
10
|
+
"pt": "Melhorar o tratamento do dispositivo de estado no caso de subpastas",
|
|
11
|
+
"nl": "Verbeter de verwerking van apparaatstaten in geval van submappen.",
|
|
12
|
+
"fr": "Améliorer la gestion de l'appareil d'état en cas de sous-dossiers",
|
|
13
|
+
"it": "Migliorare la gestione del dispositivo di stato nel caso di sottocartelle",
|
|
14
|
+
"es": "Mejora en el manejo del dispositivo de estado en caso de subcarpetas",
|
|
15
|
+
"pl": "Poprawiono obsługę urządzenia stanu w przypadku podfolderów.",
|
|
16
|
+
"uk": "Поліпшено обробку пристрою стану у випадку підпапок.",
|
|
17
|
+
"zh-cn": "改进对子文件夹中状态设备的处理"
|
|
18
|
+
},
|
|
6
19
|
"1.15.5": {
|
|
7
20
|
"en": "Bugfix logging removed",
|
|
8
21
|
"de": "Fehlerbehebung beim Protokollieren entfernt",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Dodaj powiadomienie dla bridge w adminie\nPowiadamiaj o różnych wyzwalaczach do bridge",
|
|
81
94
|
"uk": "Додати сповіщення для bridge в адмінці\nПовідомляти різні тригери до bridge",
|
|
82
95
|
"zh-cn": "在管理中为桥接添加通知\n通知不同的触发器到桥接"
|
|
83
|
-
},
|
|
84
|
-
"1.14.9": {
|
|
85
|
-
"en": "Notify new device discovered until adapter is running",
|
|
86
|
-
"de": "Benachrichtige über neu entdecktes Gerät, solange der Adapter läuft",
|
|
87
|
-
"ru": "Уведомление о новом обнаруженном устройстве до тех пор, пока работает адаптер",
|
|
88
|
-
"pt": "Notificar novo dispositivo descoberto enquanto o adaptador estiver em execução",
|
|
89
|
-
"nl": "Meld nieuw apparaat ontdekt zolang de adapter actief is",
|
|
90
|
-
"fr": "Notifier un nouvel appareil découvert tant que l'adaptateur est en cours d'exécution",
|
|
91
|
-
"it": "Notifica nuovo dispositivo rilevato finché l'adattatore è in esecuzione",
|
|
92
|
-
"es": "Notificar nuevo dispositivo descubierto mientras el adaptador esté en ejecución",
|
|
93
|
-
"pl": "Powiadamiaj o nowym wykrytym urządzeniu, dopóki adapter działa",
|
|
94
|
-
"uk": "Повідомляти про новий виявлений пристрій, доки працює адаптер",
|
|
95
|
-
"zh-cn": "在适配器运行期间通知发现的新设备"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -784,7 +784,7 @@ class bridgeClass {
|
|
|
784
784
|
(changeInfo.applicationId === config.Application || config.Application === '*') &&
|
|
785
785
|
(changeInfo.deviceEUI === config.Device || config.Device === '*') &&
|
|
786
786
|
(id.includes(`.${config.Folder}.`) || config.Folder === '*') &&
|
|
787
|
-
(id.endsWith(`.${config.State}`) || config.State === '*')
|
|
787
|
+
(id.endsWith(`.${config.Folder}.${config.State}`) || config.State === '*')
|
|
788
788
|
) {
|
|
789
789
|
Bridgestate.discover = !config.exclude;
|
|
790
790
|
Bridgestate.publish = config.publish;
|
|
@@ -850,7 +850,7 @@ class bridgeClass {
|
|
|
850
850
|
(changeInfo.applicationId === config.Application || config.Application === '*') &&
|
|
851
851
|
(changeInfo.deviceEUI === config.Device || config.Device === '*') &&
|
|
852
852
|
(id.includes(`.${config.Folder}.`) || config.Folder === '*') &&
|
|
853
|
-
(id.endsWith(`.${config.State}`) || config.State === '*')
|
|
853
|
+
(id.endsWith(`.${config.Folder}.${config.State}`) || config.State === '*')
|
|
854
854
|
) {
|
|
855
855
|
Bridgestate.discover = !config.exclude;
|
|
856
856
|
Bridgestate.publish = config.publish;
|