iobroker.lorawan 1.17.7 → 1.17.8
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 +4 -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.8 (2025-09-20)
|
|
27
|
+
* (BenAhrdt) normalize [] () & {} into _
|
|
28
|
+
|
|
26
29
|
### 1.17.7 (2025-09-19)
|
|
27
30
|
* (BenAhrdt) Virtal Mode for Foreign climate entities available
|
|
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.8",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.17.8": {
|
|
7
|
+
"en": "normalize [] () & {} into _",
|
|
8
|
+
"de": "normalize [] () & {} into _",
|
|
9
|
+
"ru": "Нормализовать [] () & {} в _",
|
|
10
|
+
"pt": "Normalizar [] () & {} para _",
|
|
11
|
+
"nl": "normalize [] () & {} into _",
|
|
12
|
+
"fr": "normaliser [] () & {} en _",
|
|
13
|
+
"it": "normalizzare [] () & {} in _",
|
|
14
|
+
"es": "Normalizar [] () & {} en _.",
|
|
15
|
+
"pl": "zamień [] () & {} na _",
|
|
16
|
+
"uk": "нормалізувати [] () & {} у _",
|
|
17
|
+
"zh-cn": "将[]()和{}转换为_"
|
|
18
|
+
},
|
|
6
19
|
"1.17.7": {
|
|
7
20
|
"en": "Virtal Mode for Foreign climate entities available",
|
|
8
21
|
"de": "Virtueller Modus für externe Klima-Entitäten verfügbar",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Naprawiono nazewnictwo stanów obcych.",
|
|
81
94
|
"uk": "Виправлено назву іноземних країн",
|
|
82
95
|
"zh-cn": "修复外州命名错误"
|
|
83
|
-
},
|
|
84
|
-
"1.17.1": {
|
|
85
|
-
"en": "Bugfix xs in jsonconfig",
|
|
86
|
-
"de": "Fehlerbehebung bei xs in jsonconfig",
|
|
87
|
-
"ru": "Исправлена ошибка xs в jsonconfig",
|
|
88
|
-
"pt": "Correção de bug xs no jsonconfig",
|
|
89
|
-
"nl": "Bugfix xs in jsonconfig",
|
|
90
|
-
"fr": "Correction de bug xs dans jsonconfig",
|
|
91
|
-
"it": "Corretto bug xs in jsonconfig",
|
|
92
|
-
"es": "Corrección de error xs en jsonconfig",
|
|
93
|
-
"pl": "Poprawiony błąd xs w jsonconfig",
|
|
94
|
-
"uk": "Виправлено помилку xs в jsonconfig",
|
|
95
|
-
"zh-cn": "修复jsonconfig中的xs bug"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1450,7 +1450,10 @@ class bridgeClass {
|
|
|
1450
1450
|
.replace(/ß/g, 'ss')
|
|
1451
1451
|
.replace(/\./g, '_')
|
|
1452
1452
|
.replace(/\//g, '_')
|
|
1453
|
-
.replace(/ /g, '_')
|
|
1453
|
+
.replace(/ /g, '_')
|
|
1454
|
+
.replace(/[()]/g, '_')
|
|
1455
|
+
.replace(/[[\]]/g, '_')
|
|
1456
|
+
.replace(/[{}]/g, '_');
|
|
1454
1457
|
} catch (error) {
|
|
1455
1458
|
this.adapter.log.error(`error at ${activeFunction}: ${error}`);
|
|
1456
1459
|
}
|