iobroker.lorawan 1.18.14 → 1.18.15
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 -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.18.15 (2025-11-25)
|
|
27
|
+
* (BenAhrdt) add '#' to normalized String
|
|
28
|
+
|
|
26
29
|
### 1.18.14 (2025-11-25)
|
|
27
30
|
* (BenAhrdt) add Cover to special devices
|
|
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.15",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.15": {
|
|
7
|
+
"en": "add '#' to normalized String",
|
|
8
|
+
"de": "'#' zu normalisieren String hinzufügen",
|
|
9
|
+
"ru": "добавить «#» в нормализованную строку",
|
|
10
|
+
"pt": "adicionar '#' à string normalizada",
|
|
11
|
+
"nl": "'#' toevoegen aan genormaliseerde tekenreeks",
|
|
12
|
+
"fr": "ajouter '#' à la chaîne normalisée",
|
|
13
|
+
"it": "aggiungere '#' a normalized String",
|
|
14
|
+
"es": "añadir '#' a la cuerda normalizada",
|
|
15
|
+
"pl": "dodaj '#' do znormalizowanego String",
|
|
16
|
+
"uk": "додати '#' для нормалізації String",
|
|
17
|
+
"zh-cn": "添加“ # ” 到正态字符串"
|
|
18
|
+
},
|
|
6
19
|
"1.18.14": {
|
|
7
20
|
"en": "add Cover to special devices",
|
|
8
21
|
"de": "cover für spezielle Geräte hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Automatyczne skalowanie jasności światła w przypadku common.max w stanie",
|
|
81
94
|
"uk": "Автомактична шкала легкої яскравості при загальній.max в стані",
|
|
82
95
|
"zh-cn": "状态下常见.max时的光亮度自动缩放"
|
|
83
|
-
},
|
|
84
|
-
"1.18.8": {
|
|
85
|
-
"en": "Bugfix: no notification in case of no bridge is used",
|
|
86
|
-
"de": "Bugfix: keine Benachrichtigung bei Nutzung einer Brücke",
|
|
87
|
-
"ru": "Bugfix: отсутствие уведомления в случае отсутствия моста",
|
|
88
|
-
"pt": "Correção de Bug: não é usada nenhuma notificação em caso de não haver ponte",
|
|
89
|
-
"nl": "Bugfix: geen melding in geval van geen brug wordt gebruikt",
|
|
90
|
-
"fr": "Bugfix: aucune notification en cas d'absence de pont n'est utilisée",
|
|
91
|
-
"it": "Bugfix: nessuna notifica in caso di utilizzo di nessun ponte",
|
|
92
|
-
"es": "Bugfix: no se utiliza notificación en caso de no puente",
|
|
93
|
-
"pl": "Bugfix: brak powiadomienia w przypadku braku mostu",
|
|
94
|
-
"uk": "Виправлення помилок: відсутність сповіщення при відсутності місту",
|
|
95
|
-
"zh-cn": "Bugfix: 在没有桥时没有使用通知"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/modules/bridge.js
CHANGED
|
@@ -1544,7 +1544,8 @@ class bridgeClass {
|
|
|
1544
1544
|
.replace(/ /g, '_')
|
|
1545
1545
|
.replace(/[()]/g, '_')
|
|
1546
1546
|
.replace(/[[\]]/g, '_')
|
|
1547
|
-
.replace(/[{}]/g, '_')
|
|
1547
|
+
.replace(/[{}]/g, '_')
|
|
1548
|
+
.replace(/#/g, '_');
|
|
1548
1549
|
} catch (error) {
|
|
1549
1550
|
this.adapter.log.error(`error at ${activeFunction}: ${error}`);
|
|
1550
1551
|
}
|