iobroker.lorawan 0.6.4 → 0.6.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/directorieshandler.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
22
22
|
Placeholder for the next version (at the beginning of the line):
|
|
23
23
|
### **WORK IN PROGRESS**
|
|
24
24
|
-->
|
|
25
|
+
### 0.6.5 (2024-03-08)
|
|
26
|
+
* (BenAhrdt) setObject changed into setObjectAsync
|
|
27
|
+
|
|
25
28
|
### 0.6.4 (2024-03-07)
|
|
26
29
|
* (BenAhrdt) Change writing of deviceinformations at Ttn
|
|
27
30
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.5",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.6.5": {
|
|
7
|
+
"en": "setObject changed into setObjectAsync",
|
|
8
|
+
"de": "menge Objekt geändert in Set ObjektAsync",
|
|
9
|
+
"ru": "set Объект изменен на набор ОбъектАсинк",
|
|
10
|
+
"pt": "conjunto Objeto alterado em conjunto ObjectAsync",
|
|
11
|
+
"nl": "ingesteld Object veranderd in set ObjectAsync",
|
|
12
|
+
"fr": "ensemble Objet modifié en jeu ObjetAsync",
|
|
13
|
+
"it": "set Oggetto cambiato in set Luogo di origine",
|
|
14
|
+
"es": "set Objeto cambiado en conjunto ObjectAsync",
|
|
15
|
+
"pl": "zestaw Obiekt zmieniony w zestaw ObjectAsync",
|
|
16
|
+
"uk": "комплекти Об'єкт змінився в комплекті Об'єктАсинхрон",
|
|
17
|
+
"zh-cn": "设定 对象更改为集合 对象同步"
|
|
18
|
+
},
|
|
6
19
|
"0.6.4": {
|
|
7
20
|
"en": "Change writing of deviceinformations at Ttn",
|
|
8
21
|
"de": "Schreiben von Geräteinformationen bei Ttn ändern",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "pierwszy etap postępowania z datą",
|
|
81
94
|
"uk": "перший крок обробки з датою",
|
|
82
95
|
"zh-cn": "处理日期的第一步"
|
|
83
|
-
},
|
|
84
|
-
"0.5.4": {
|
|
85
|
-
"en": "implement ther approvedFolder conzept for writecommands from message",
|
|
86
|
-
"de": "den genehmigten Ordner-Konzept für Schreibbefehle aus der Nachricht",
|
|
87
|
-
"ru": "реализовать Folder conzept for writecommands from message",
|
|
88
|
-
"pt": "implementar o aprovado Conzept de pasta para writecommands da mensagem",
|
|
89
|
-
"nl": "tenuitvoerlegging goedgekeurd Map conzept voor schrijfopdrachten uit bericht",
|
|
90
|
-
"fr": "mise en œuvre approuvée Dossier conzept pour les commandes d'écriture du message",
|
|
91
|
-
"it": "implementare il Cartella conzept per i comandi di scrittura dal messaggio",
|
|
92
|
-
"es": "de aplicación aprobado Folder conzept for writecommands from message",
|
|
93
|
-
"pl": "wdrożyć zatwierdzoną Folder conzept dla pisarek z wiadomości",
|
|
94
|
-
"uk": "реалізація затвердженого р. Складаний конверт для написаннякоманд з повідомлення",
|
|
95
|
-
"zh-cn": "执行批准的程序 从信件中写入命令的文件夹召集"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"title": "LoRaWAN",
|
|
@@ -216,7 +216,7 @@ class directorieshandlerClass {
|
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
// check whether a common name was specified
|
|
219
|
-
if(obj[elementName].objectCommonName
|
|
219
|
+
if(obj[elementName].objectCommonName){
|
|
220
220
|
if(typeof obj[elementName].objectCommonName === "function"){
|
|
221
221
|
myObject.common.name = obj[elementName].objectCommonName(topic,message);
|
|
222
222
|
}
|
|
@@ -265,7 +265,7 @@ class directorieshandlerClass {
|
|
|
265
265
|
}
|
|
266
266
|
if(!isDeepStrictEqual(myObject,myObjectBefore)){
|
|
267
267
|
this.adapter.log.debug(`set object ${objectId}`);
|
|
268
|
-
await this.adapter.
|
|
268
|
+
await this.adapter.setObjectAsync(objectId,myObject);
|
|
269
269
|
}
|
|
270
270
|
// Jump into next step (next directory / attribute)
|
|
271
271
|
await this.generateRekursivObjects(obj[elementName],objectId,topic,message,options);
|