iobroker.lorawan 1.19.3 → 1.19.4
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/bridgeDeviceHandler.js +1 -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.19.4 (2026-01-04)
|
|
27
|
+
* (BenAhrdt) change buildSafeStateId (domain)
|
|
28
|
+
|
|
26
29
|
### 1.19.3 (2026-01-04)
|
|
27
30
|
* (BenAhrdt) add version and domain to automation
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.19.
|
|
4
|
+
"version": "1.19.4",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.19.4": {
|
|
7
|
+
"en": "change buildSafeStateId (domain)",
|
|
8
|
+
"de": "änderungen Sicherheit Id (domain)",
|
|
9
|
+
"ru": "изменение структуры Безопасное государство Id (домен)",
|
|
10
|
+
"pt": "alterar compilação Estado Seguro ID (domínio)",
|
|
11
|
+
"nl": "bouwen veranderen Veilige staat Id (domein)",
|
|
12
|
+
"fr": "construction de changement État de sécurité Id (domaine)",
|
|
13
|
+
"it": "cambiamento di costruzione Stato sicuro Id (domain)",
|
|
14
|
+
"es": "cambio de construcción Estado seguro Id (dominio)",
|
|
15
|
+
"pl": "zmień budowę SafeState Id (domena)",
|
|
16
|
+
"uk": "збір змін Сейфи Id (домен)",
|
|
17
|
+
"zh-cn": "变化构建 安全状态 ID( 域数)"
|
|
18
|
+
},
|
|
6
19
|
"1.19.3": {
|
|
7
20
|
"en": "add version and domain to automation",
|
|
8
21
|
"de": "version und domäne zur automatisierung hinzufügen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Obiecaj funkcje zagraniczne w Promise.all",
|
|
81
94
|
"uk": "Використовуйте іноземні функції в Promise.all",
|
|
82
95
|
"zh-cn": "在保证中保证外国职能"
|
|
83
|
-
},
|
|
84
|
-
"1.18.61": {
|
|
85
|
-
"en": "set chunksize to 32",
|
|
86
|
-
"de": "set chunksize auf 32",
|
|
87
|
-
"ru": "устанавливает размер до 32",
|
|
88
|
-
"pt": "definir o tamanho do bloco como 32",
|
|
89
|
-
"nl": "blokgrootte instellen op 32",
|
|
90
|
-
"fr": "définir la taille des morceaux à 32",
|
|
91
|
-
"it": "set chunksize a 32",
|
|
92
|
-
"es": "set chunksize a 32",
|
|
93
|
-
"pl": "ustawiony rozmiar chunksize do 32",
|
|
94
|
-
"uk": "встановити chunksize до 32",
|
|
95
|
-
"zh-cn": "设置为32块"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -335,8 +335,7 @@ class bridgeDeviceHandlerClass {
|
|
|
335
335
|
|
|
336
336
|
// if eg. switch in front => remove
|
|
337
337
|
const parts = baseId.split('.');
|
|
338
|
-
const raw =
|
|
339
|
-
parts.length > 1 && parts[0] === entity.entity_id?.split('.')[0] ? parts.slice(1).join('.') : baseId;
|
|
338
|
+
const raw = parts.length > 1 && parts[0] === entity.domain ? parts.slice(1).join('.') : baseId;
|
|
340
339
|
|
|
341
340
|
// 3. remove ".
|
|
342
341
|
return raw.replace(/\./g, '_');
|