iobroker.lorawan 1.4.0 → 1.4.1
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 +0 -1
- package/package.json +5 -5
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.4.1 (2024-09-25)
|
|
27
|
+
* (BenAhrdt) remove timestamp from role date (ttn timestamp im µs)
|
|
28
|
+
|
|
26
29
|
### 1.4.0 (2024-08-30)
|
|
27
30
|
* (BenAhrdt) function to assign properties
|
|
28
31
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.4.1": {
|
|
7
|
+
"en": "remove timestamp from role date (ttn timestamp im µs)",
|
|
8
|
+
"de": "zeitstempel aus rollendatum entfernen (ttn timestamp im μs)",
|
|
9
|
+
"ru": "удалить таймстам от даты роли (ttn timestamp im μs)",
|
|
10
|
+
"pt": "remove timestamp da data de função (ttn timestamp im μs)",
|
|
11
|
+
"nl": "tijdstempel verwijderen van roldatum (ttn tijdstempel im μs)",
|
|
12
|
+
"fr": "enlever l'horodatage à partir de la date du rôle (ttn horodatage im μs)",
|
|
13
|
+
"it": "rimuovere timestamp dalla data di ruolo (tn timestamp im μs)",
|
|
14
|
+
"es": "eliminar el timetamp de la fecha de función (ttn timestamp im μs)",
|
|
15
|
+
"pl": "usunąć znacznik czasu z daty odtworzenia (ttn timestamp im µs)",
|
|
16
|
+
"uk": "видалення мітки часу від дати ролі (tn timestamp im μs)",
|
|
17
|
+
"zh-cn": "从角色日期中删除时间戳 (ttn timestamp im μs)"
|
|
18
|
+
},
|
|
6
19
|
"1.4.0": {
|
|
7
20
|
"en": "function to assign properties",
|
|
8
21
|
"de": "funktion eigenschaften zuzuordnen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "nieodporna budowa offlinenotyfikacji > = 25 godzin",
|
|
81
94
|
"uk": "небезпечна будівля офлайнеризації >= 25 годин",
|
|
82
95
|
"zh-cn": "防线外通知楼 25小时"
|
|
83
|
-
},
|
|
84
|
-
"1.2.0": {
|
|
85
|
-
"en": "change deviceInformations (keep old values in structure)",
|
|
86
|
-
"de": "ändern deviceInformationen (erhalten alte Werte in der Struktur)",
|
|
87
|
-
"ru": "изменение устройстваИнформации (сдерживайте старые значения в структуре)",
|
|
88
|
-
"pt": "alterar dispositivoInformações (manter valores antigos na estrutura)",
|
|
89
|
-
"nl": "apparaat wijzigenInformaties (oude waarden in structuur behouden)",
|
|
90
|
-
"fr": "modifier l'appareilInformations (conserver les anciennes valeurs dans la structure)",
|
|
91
|
-
"it": "cambiamento dispositivoInformazioni (mantenere vecchi valori in struttura)",
|
|
92
|
-
"es": "cambiar dispositivoInformación (Mantener valores antiguos en la estructura)",
|
|
93
|
-
"pl": "change deviceInformations (zachować stare wartości w strukturze)",
|
|
94
|
-
"uk": "змінити пристрійРеформації (зніміть старі значення в структурі)",
|
|
95
|
-
"zh-cn": "更改设备信息( 保留结构中的旧值)"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.lorawan",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "converts the desired lora gateway data to a ioBroker structure",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "BenAhrdt",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@iobroker/adapter-core": "^3.1.6",
|
|
29
29
|
"easy-crc": "^1.1.0",
|
|
30
|
-
"mqtt": "^5.
|
|
30
|
+
"mqtt": "^5.10.1",
|
|
31
31
|
"node-schedule": "^2.1.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"@iobroker/testing": "^4.1.3",
|
|
40
40
|
"@tsconfig/node18": "^18.2.2",
|
|
41
41
|
"@types/chai": "^4.3.11",
|
|
42
|
-
"@types/chai-as-promised": "^
|
|
42
|
+
"@types/chai-as-promised": "^8.0.0",
|
|
43
43
|
"@types/mocha": "^10.0.7",
|
|
44
|
-
"@types/node": "^
|
|
44
|
+
"@types/node": "^22.5.1",
|
|
45
45
|
"@types/proxyquire": "^1.3.31",
|
|
46
46
|
"@types/sinon": "^17.0.3",
|
|
47
47
|
"@types/sinon-chai": "^3.2.12",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chai-as-promised": "^8.0.0",
|
|
50
50
|
"eslint": "^8.57.0",
|
|
51
|
-
"mocha": "^10.
|
|
51
|
+
"mocha": "^10.7.3",
|
|
52
52
|
"proxyquire": "^2.1.3",
|
|
53
53
|
"sinon": "^18.0.0",
|
|
54
54
|
"sinon-chai": "^3.7.0",
|