iobroker.lorawan 1.20.11 → 1.20.13

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.13 (2026-01-26)
27
+ * (BenAhrdt) remove nod from crypto
28
+
29
+ ### 1.20.12 (2026-01-26)
30
+ * (BenAhrdt) check for update
31
+
26
32
  ### 1.20.11 (2026-01-26)
27
33
  * (BenAhrdt) improve device Manager icons and Buttons
28
34
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.20.11",
4
+ "version": "1.20.13",
5
5
  "news": {
6
+ "1.20.13": {
7
+ "en": "remove nod from crypto",
8
+ "de": "nod from crypto entfernen",
9
+ "ru": "удалить nod из crypto",
10
+ "pt": "remover aceno do cripto",
11
+ "nl": "verwijderen knik uit crypto",
12
+ "fr": "enlever le noeud de crypto",
13
+ "it": "rimuovere il nodo da crypto",
14
+ "es": "quitar el fideo de cripto",
15
+ "pl": "usunąć skinienie z krypto",
16
+ "uk": "видалити nod з крипто",
17
+ "zh-cn": "从加密中删除点头"
18
+ },
19
+ "1.20.12": {
20
+ "en": "check for update",
21
+ "de": "überprüfung der aktualisierung",
22
+ "ru": "проверьте обновление",
23
+ "pt": "verificar a actualização",
24
+ "nl": "controleren op update",
25
+ "fr": "vérifier la mise à jour",
26
+ "it": "controllare per l'aggiornamento",
27
+ "es": "check for update",
28
+ "pl": "sprawdzanie aktualizacji",
29
+ "uk": "реєстрація на оновлення",
30
+ "zh-cn": "检查更新"
31
+ },
6
32
  "1.20.11": {
7
33
  "en": "improve device Manager icons and Buttons",
8
34
  "de": "verbesserung der Vorrichtung Icons und Buttons verwalten",
@@ -67,32 +93,6 @@
67
93
  "pl": "bugfix prawidłowe pisanie wskaźników",
68
94
  "uk": "виправлення правильних показників",
69
95
  "zh-cn": "错误修正正确的指标写法"
70
- },
71
- "1.20.6": {
72
- "en": "updateing assignhandler und modifying indicators and informations",
73
- "de": "aktualisierung von assignhandler und änderung von indikatoren und informationen",
74
- "ru": "обновление цессионера и изменение показателей и информации",
75
- "pt": "atualização de indicadores e informações de atribuição e modificação",
76
- "nl": "actualisering van indicatoren en informatie",
77
- "fr": "mettre à jour les indicateurs et les informations d'attribution et de modification",
78
- "it": "aggiornamento assegnatore und modifica degli indicatori e delle informazioni",
79
- "es": "actualización del cedente nod modificando indicadores e informaciones",
80
- "pl": "aktualizowanie identyfikatorów i modyfikowanie wskaźników i informacji",
81
- "uk": "оновлення вивіски унд модифікації індикаторів та інформації",
82
- "zh-cn": "更新指定手控器未修改指标和信息"
83
- },
84
- "1.20.5": {
85
- "en": "bugfixing updating object Store with not alowed id",
86
- "de": "bugfixing update object Store with not alowed id",
87
- "ru": "bugfixing Update Object Store с невысоким идентификатором",
88
- "pt": "correcção de erros para actualizar o objecto Armazenar sem ID abaixado",
89
- "nl": "bugfixing update object Store with not alowed id",
90
- "fr": "bugfixing update object Store avec id non alowed",
91
- "it": "bugfixing aggiornamento oggetti Store con non alowed id",
92
- "es": "bugfixing actualización objeto Store with not alowed id",
93
- "pl": "bugfitting aktualizacja obiektu Przechowuj bez przypisanego id",
94
- "uk": "виправлення помилок оновлення об'єкту Store з не потовщеним id",
95
- "zh-cn": "正在更新对象 Store, 且未减少 ID"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/main.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const mqtt = require('mqtt');
4
- const crypto = require('node:crypto');
4
+ const crypto = require('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.11",
3
+ "version": "1.20.13",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",