iobroker.lorawan 1.17.4 → 1.17.5
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 +6 -3
- 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.5 (2025-09-19)
|
|
27
|
+
* (BenAhrdt) Improve quere for foreign states in discover foreign climate
|
|
28
|
+
|
|
26
29
|
### 1.17.4 (2025-09-19)
|
|
27
30
|
* (BenAhrdt) More debuglogging for Foreign Climate error
|
|
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.5",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.17.5": {
|
|
7
|
+
"en": "Improve quere for foreign states in discover foreign climate",
|
|
8
|
+
"de": "Verbessern Sie die Abfrage für ausländische Staaten in der Entdecken-Fremdes-Klima-Funktion.",
|
|
9
|
+
"ru": "Улучшена обработка запросов для иностранных стран при обнаружении климата в других странах.",
|
|
10
|
+
"pt": "Melhorada a consulta para estados estrangeiros no descobrimento do clima estrangeiro.",
|
|
11
|
+
"nl": "Verbeter query voor buitenlandse staten in het ontdekken van het buitenlandse klimaat",
|
|
12
|
+
"fr": "Amélioration de la requête pour les états étrangers dans la découverte du climat étranger",
|
|
13
|
+
"it": "Migliorata la richiesta per gli stati esteri nella scoperta del clima estero",
|
|
14
|
+
"es": "Mejorar la consulta para estados extranjeros en descubrir clima extranjero",
|
|
15
|
+
"pl": "Popraw zapytanie o stany zagraniczne w odkrywaniu zagranicznego klimatu",
|
|
16
|
+
"uk": "Покращено запит для іноземних держав у відкритті зовнішнього клімату",
|
|
17
|
+
"zh-cn": "改进了外国气候的查询。"
|
|
18
|
+
},
|
|
6
19
|
"1.17.4": {
|
|
7
20
|
"en": "More debuglogging for Foreign Climate error",
|
|
8
21
|
"de": "Mehr Debug-Logging für Fehler bei Fremdklima.",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Usuń urządzenia z mostka (odkryj puste) po zmianie identyfikatora urządzenia",
|
|
81
94
|
"uk": "видалити пристрої у мості (відкрити порожнечу) після зміни ідентифікатора пристрою",
|
|
82
95
|
"zh-cn": "更改设备标识符后,在桥接器中删除设备(发现为空)。"
|
|
83
|
-
},
|
|
84
|
-
"1.16.11": {
|
|
85
|
-
"en": "dont use bridge enum within namespace of adapter\nImprove Namebuilding of foreign states to bridge",
|
|
86
|
-
"de": "Verwenden Sie keine Bridge-Enum innerhalb des Namensraums des Adapters.\nVerbessern Sie den Namensaufbau ausländischer Staaten auf Bridging",
|
|
87
|
-
"ru": "не используйте перечисление bridge в пространстве имен адаптера\nУлучшено построение имен иностранных государств для функции bridge.",
|
|
88
|
-
"pt": "Não use a enumeração de ponte dentro do namespace do adaptador.\nMelhorar a construção de nomes de estados estrangeiros para ponte",
|
|
89
|
-
"nl": "Gebruik geen brugenum binnen de namespace van de adapter.\nVerbeter de naamopbouw van buitenlandse staten naar brug",
|
|
90
|
-
"fr": "Ne pas utiliser l'énumération pont (bridge enum) à l'intérieur de l'espace de noms de l'adaptateur.\nAmélioration de la construction du nom des états étrangers pour les ponts.",
|
|
91
|
-
"it": "Non utilizzare l'enumerazione del ponte all'interno dello spazio dei nomi dell'adattatore.\nMiglioramento del nome delle costruzioni degli stati stranieri per rendere più coerente",
|
|
92
|
-
"es": "no use el enum de puente dentro del espacio de nombres del adaptador\nMejorar la construcción de nombres de estados extranjeros para la conexión.",
|
|
93
|
-
"pl": "Nie używaj typu enum bridge w przestrzeni nazw adaptera.\nPoprawiono nazewnictwo zagranicznych stanów, aby ułatwić ich identyfikację.",
|
|
94
|
-
"uk": "не використовуйте перелік `bridge` в межах простору імен адаптера\nПокращено назви зовнішніх держав для зручності.",
|
|
95
|
-
"zh-cn": "在适配器的命名空间中不要使用桥接枚举。\n改进外国状态的名称构建以弥合差异"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1786,9 +1786,12 @@ class bridgeClass {
|
|
|
1786
1786
|
climateIds.mode = `${this.adapter.namespace}.${config.ModeApplication}.devices.${config.ModeDevice}.${config.ModeFolder}.${config.ModeState}`;
|
|
1787
1787
|
}*/
|
|
1788
1788
|
for (const id of Object.values(climateIds)) {
|
|
1789
|
-
if
|
|
1790
|
-
|
|
1791
|
-
|
|
1789
|
+
// Just lockto object, if it does not end with Virtual Mode
|
|
1790
|
+
if (!id.endsWith(this.EndingVirtualMode)) {
|
|
1791
|
+
if (!(await this.adapter.getForeignObjectAsync)) {
|
|
1792
|
+
this.adapter.log.debug(`Id: ${id} does not exsit.`);
|
|
1793
|
+
return false;
|
|
1794
|
+
}
|
|
1792
1795
|
}
|
|
1793
1796
|
}
|
|
1794
1797
|
if (config.ClimateName === '') {
|