iobroker.lorawan 1.17.1 → 1.17.2
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.17.2 (2025-09-19)
|
|
27
|
+
* (BenAhrdt) Bugfix nameing of foreign states
|
|
28
|
+
|
|
26
29
|
### 1.17.1 (2025-09-19)
|
|
27
30
|
* (BenAhrdt) Bugfix xs in jsonconfig
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.17.2": {
|
|
7
|
+
"en": "Bugfix nameing of foreign states",
|
|
8
|
+
"de": "Behebung der Benennung von ausländischen Bundesländern",
|
|
9
|
+
"ru": "Исправлена ошибка в именовании иностранных государств.",
|
|
10
|
+
"pt": "Correção de nomeação de estados estrangeiros",
|
|
11
|
+
"nl": "Bugfix benoemen van buitenlandse staten",
|
|
12
|
+
"fr": "Correction de la dénomination des états étrangers",
|
|
13
|
+
"it": "Correzione bug nel nome dei stati stranieri",
|
|
14
|
+
"es": "Corrección de nombres de estados extranjeros",
|
|
15
|
+
"pl": "Naprawiono nazewnictwo stanów obcych.",
|
|
16
|
+
"uk": "Виправлено назву іноземних країн",
|
|
17
|
+
"zh-cn": "修复外州命名错误"
|
|
18
|
+
},
|
|
6
19
|
"1.17.1": {
|
|
7
20
|
"en": "Bugfix xs in jsonconfig",
|
|
8
21
|
"de": "Fehlerbehebung bei xs in jsonconfig",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Dodaj test połączenia do konfiguracji mostka\nNaprawiono problem z deaktywacją wyszukiwania połączenia LNS w przypadku pustego adresu URL.\nNaprawiono wartości domyślne dla stanów typu json.",
|
|
81
94
|
"uk": "Додайте перевірку з'єднання до налаштувань моста.\nВиправлення помилки в деактивації пошуку підключення LNS у випадку порожнього URL\nВиправлення значень за замовчуванням для станів JSON.",
|
|
82
95
|
"zh-cn": "将连接测试添加到桥接器配置\n修复Bug:如果URL为空,则禁用LNS连接搜索。\n修复了JSON状态的默认值。"
|
|
83
|
-
},
|
|
84
|
-
"1.16.8": {
|
|
85
|
-
"en": "Bring enum selection in config",
|
|
86
|
-
"de": "Fügen Sie die Auswahlmöglichkeit für Aufzählungen in der Konfiguration hinzu.",
|
|
87
|
-
"ru": "Добавлена возможность выбора значения из перечисления в настройках",
|
|
88
|
-
"pt": "Trazer seleção de enumeração na configuração",
|
|
89
|
-
"nl": "Breng de enum-selectie in de configuratie",
|
|
90
|
-
"fr": "Apporter la sélection d'énumération dans la configuration",
|
|
91
|
-
"it": "Porta la selezione dell'enum nella configurazione",
|
|
92
|
-
"es": "Traer selección de enum en la configuración",
|
|
93
|
-
"pl": "Przynieś wybór enum w konfiguracji",
|
|
94
|
-
"uk": "Додано вибір типу даних \"enum\" в налаштуваннях (config).",
|
|
95
|
-
"zh-cn": "在配置中添加枚举选择"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1936,7 +1936,7 @@ class bridgeClass {
|
|
|
1936
1936
|
|
|
1937
1937
|
const parentNameing = await this.getParentNameing(id);
|
|
1938
1938
|
const deviceIdentifier = parentNameing?.parentName;
|
|
1939
|
-
const statename = id.substring(parentNameing?.
|
|
1939
|
+
const statename = id.substring((parentNameing?.parentId?.length ?? 0) + 1, id.length);
|
|
1940
1940
|
this.adapter.log.debug(`Assigned - deviceIdentifier: ${deviceIdentifier} - statename: ${statename}`);
|
|
1941
1941
|
options.Bridgestate = {
|
|
1942
1942
|
publish: options.common.read,
|