iobroker.lorawan 1.20.13 → 1.20.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 CHANGED
@@ -23,6 +23,12 @@ 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.20.15 (2026-01-26)
27
+ * (BenAhrdt) sort output for informations
28
+
29
+ ### 1.20.14 (2026-01-26)
30
+ * (BenAhrdt) insert node
31
+
26
32
  ### 1.20.13 (2026-01-26)
27
33
  * (BenAhrdt) remove nod from crypto
28
34
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.20.13",
4
+ "version": "1.20.15",
5
5
  "news": {
6
+ "1.20.15": {
7
+ "en": "sort output for informations",
8
+ "de": "sortierausgabe für informationen",
9
+ "ru": "сортировать выход для информации",
10
+ "pt": "sort output para informações",
11
+ "nl": "uitvoer voor informatie sorteren",
12
+ "fr": "trier la sortie pour les informations",
13
+ "it": "sort output per informazioni",
14
+ "es": "salida de tipo para información",
15
+ "pl": "sortowanie wyników dla informacji",
16
+ "uk": "сортування інформації",
17
+ "zh-cn": "信息排序输出"
18
+ },
19
+ "1.20.14": {
20
+ "en": "insert node",
21
+ "de": "einsatzknoten",
22
+ "ru": "вставной узел",
23
+ "pt": "inserir o nó",
24
+ "nl": "knooppunt invoegen",
25
+ "fr": "insérer le noeud",
26
+ "it": "inserto nodo",
27
+ "es": "insertar nodos",
28
+ "pl": "wstaw węzeł",
29
+ "uk": "вставка вершини",
30
+ "zh-cn": "插入节点"
31
+ },
6
32
  "1.20.13": {
7
33
  "en": "remove nod from crypto",
8
34
  "de": "nod from crypto entfernen",
@@ -67,32 +93,6 @@
67
93
  "pl": "eksperymentalne dla formy",
68
94
  "uk": "експериментальна форма",
69
95
  "zh-cn": "实验形式"
70
- },
71
- "1.20.8": {
72
- "en": "changes in objectStore",
73
- "de": "änderungen des Objekts Store",
74
- "ru": "изменения в объекте Магазин",
75
- "pt": "alterações no objeto Armazenar",
76
- "nl": "wijzigingen in object Opslaan",
77
- "fr": "changements d'objet A conserver",
78
- "it": "cambiamenti nell'oggetto Negozio",
79
- "es": "cambios en el objeto Store",
80
- "pl": "zmiany w obiekcie Przechowywać",
81
- "uk": "зміни об'єкта Магазини",
82
- "zh-cn": "对象变化 存储"
83
- },
84
- "1.20.7": {
85
- "en": "bugfix correct writing of indicators",
86
- "de": "bugfix korrektes schreiben von indikatoren",
87
- "ru": "bugfix правильное написание индикаторов",
88
- "pt": "errofix escrita correta de indicadores",
89
- "nl": "foutfix correct schrijven van indicatoren",
90
- "fr": "bugfix écriture correcte des indicateurs",
91
- "it": "bugfix corretto scrittura di indicatori",
92
- "es": "bugfix correcta escritura de indicadores",
93
- "pl": "bugfix prawidłowe pisanie wskaźników",
94
- "uk": "виправлення правильних показників",
95
- "zh-cn": "错误修正正确的指标写法"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -216,7 +216,11 @@ class LoRaWANDeviceManagement extends DeviceManagement {
216
216
  },
217
217
  {
218
218
  data: {
219
- deviceinfos: JSON.stringify(deviceInfo[id].uplink.decoded, null, 2),
219
+ deviceinfos: JSON.stringify(
220
+ deviceInfo[id].uplink.decoded,
221
+ Object.keys(deviceInfo[id].uplink.decoded).sort(),
222
+ 2,
223
+ ),
220
224
  },
221
225
  title: this.adapter.i18nTranslation['Info of this device'],
222
226
  },
package/main.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const mqtt = require('mqtt');
4
- const crypto = require('crypto');
4
+ const crypto = require('node:crypto');
5
5
 
6
6
  /*
7
7
  * Created with @iobroker/create-adapter v2.6.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.20.13",
3
+ "version": "1.20.15",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",