iobroker.lorawan 1.18.53 → 1.18.54
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/main.js +3 -0
- 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.54 (2025-12-29)
|
|
27
|
+
* (BenAhrdt) add '.' to folders in config selection
|
|
28
|
+
|
|
26
29
|
### 1.18.53 (2025-12-29)
|
|
27
30
|
* (BenAhrdt) add possibility to add folders to
|
|
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.54",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.18.54": {
|
|
7
|
+
"en": "add '.' to folders in config selection",
|
|
8
|
+
"de": "fügen sie '.' in ordner in config auswahl",
|
|
9
|
+
"ru": "добавить '.' в папки в настройках выбора",
|
|
10
|
+
"pt": "adicionar '.' às pastas na seleção de configuração",
|
|
11
|
+
"nl": "'.' toevoegen aan mappen in configuratieselectie",
|
|
12
|
+
"fr": "ajouter '.' aux dossiers dans la sélection de configuration",
|
|
13
|
+
"it": "aggiungere '.' alle cartelle nella selezione di configurazione",
|
|
14
|
+
"es": "añadir '.' a carpetas en la selección de configuración",
|
|
15
|
+
"pl": "dodaj '.' do folderów w zaznaczeniu konfiguracyjnym",
|
|
16
|
+
"uk": "додати '.' до папок у вибраному конфігурації",
|
|
17
|
+
"zh-cn": "在配置选中的文件夹中添加“. ”"
|
|
18
|
+
},
|
|
6
19
|
"1.18.53": {
|
|
7
20
|
"en": "add possibility to add folders to",
|
|
8
21
|
"de": "die möglichkeit hinzufügen von ordnern",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Ustaw wybór na używane Nazwy (aplikacja i urządzenie)",
|
|
81
94
|
"uk": "Налаштуйте вибір для використанняНазви (застосування та пристрій)",
|
|
82
95
|
"zh-cn": "将选中区域设定为使用的名称( 应用程序和设备)"
|
|
83
|
-
},
|
|
84
|
-
"1.18.47": {
|
|
85
|
-
"en": "* CustomSend becomes possibility for different order of parameters.\n payloadInHex, port, confirmed, priority, push (push is written as string 'push')",
|
|
86
|
-
"de": "* CustomSend wird Möglichkeit für verschiedene Parameterreihenfolge.\nnutzlast InHex, Port, bestätigt, Priorität, Push (Push wird als String 'Push' geschrieben)",
|
|
87
|
-
"ru": "* CustomSend становится возможностью для различных порядков параметров.\nполезная нагрузка InHex, порт, подтвержденный, приоритет, push (push пишется как строка «push»)",
|
|
88
|
-
"pt": "* CustomSend torna-se possibilidade para diferentes ordens de parâmetros.\ncarga útil InHex, porto, confirmado, prioridade, push (empurra é escrito como string 'push')",
|
|
89
|
-
"nl": "* AangepastVerzenden wordt mogelijk voor verschillende orde van parameters.\nlaadvermogen InHex, poort, bevestigd, prioriteit, push (push is geschreven als string 'push')",
|
|
90
|
-
"fr": "* CustomSend devient possibilité pour différents ordres de paramètres.\ncharge utile InHex, port, confirmé, priorité, push (push est écrit comme chaîne de caractères \"push\")",
|
|
91
|
-
"it": "* CustomSend diventa possibilità per ordine diverso di parametri.\ncarico utile InHex, porto, confermato, priorità, spinta (push è scritto come stringa 'push')",
|
|
92
|
-
"es": "* CustomSend se convierte en posibilidad para diferentes tipos de parámetros.\ncarga útil InHex, port, confirmed, priority, push (push está escrito como cadena 'push')",
|
|
93
|
-
"pl": "* CustomSend staje się możliwością dla różnych kolejności parametrów.\nładowność InHex, port, potwierdzone, priorytet, push (push jest zapisany jako ciąg 'push')",
|
|
94
|
-
"uk": "* Користувальницька робота на різних параметрах.\nзавантажити InHex, порт, підтверджений, пріоритет, штовхач (подушка написана як рядок 'push')",
|
|
95
|
-
"zh-cn": "* CustomSend成为不同参数顺序的可能.\n有效载荷 InHex, 端口, 确认, 优先级, 推( 推为字符串“ push” )"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/main.js
CHANGED
|
@@ -1461,6 +1461,9 @@ class Lorawan extends utils.Adapter {
|
|
|
1461
1461
|
fullStatename += changeInfo?.allElements[i];
|
|
1462
1462
|
}
|
|
1463
1463
|
}
|
|
1464
|
+
if (adapterObject.type === 'folder') {
|
|
1465
|
+
fullStatename += '.';
|
|
1466
|
+
}
|
|
1464
1467
|
const label = fullStatename;
|
|
1465
1468
|
const value = fullStatename;
|
|
1466
1469
|
if (!currentStates[value]) {
|