iobroker.lorawan 1.2.1 → 1.2.2

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,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.2.2 (2024-06-25)
27
+ * (BenAhrdt) Bugfix inf generate Deviceinfo at startup for chirpstack
28
+
26
29
  ### 1.2.1 (2024-06-24)
27
30
  * (BenAhrdt) improof building of offlinenotification >= 25 hours
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "news": {
6
+ "1.2.2": {
7
+ "en": "Bugfix inf generate Deviceinfo at startup for chirpstack",
8
+ "de": "Bugfix inf erzeugen Deviceinfo beim Start für chirpstack",
9
+ "ru": "Bugfix вf генерирует Deviceinfo при запуске chirpstack",
10
+ "pt": "Bugfix inf gerar Deviceinfo na inicialização para chirpstack",
11
+ "nl": "Bugfix inf genereren Apparaatinfo bij opstarten voor tjirpstack",
12
+ "fr": "Bugfix inf génère Deviceinfo au démarrage pour chirpstack",
13
+ "it": "Bugfix inf genera Deviceinfo all'avvio per chirpstack",
14
+ "es": "Bugfix inf genera Deviceinfo al inicio para chirpstack",
15
+ "pl": "Bugfix inf generuje Deviceinfo przy starcie dla chirpstock",
16
+ "uk": "Bugfix inf генерувати Deviceinfo на запуску для chirpstack",
17
+ "zh-cn": "启动时 bugfix inf 生成设备信息"
18
+ },
6
19
  "1.2.1": {
7
20
  "en": "improof building of offlinenotification >= 25 hours",
8
21
  "de": "unsicherer aufbau der offlinenotifizierung >= 25 stunden",
@@ -80,19 +93,6 @@
80
93
  "pl": "ustawić wartość keeplive na 0 = > dezaktywować automatyczne ponowne połączenie",
81
94
  "uk": "встановити безпечне значення 0 => деактивувати автоматичне відключення",
82
95
  "zh-cn": "将保存值设置为 0 qq 自动重联"
83
- },
84
- "1.0.7": {
85
- "en": "setObjectAsynch bug after offline solved",
86
- "de": "menge ObjectAsynch Bug nach Offline gelöst",
87
- "ru": "set ObjectAsynch bug after offline resolved",
88
- "pt": "conjunto Bug ObjectAsynch após offline resolvido",
89
- "nl": "ingesteld ObjectAsynch bug na offline opgelost",
90
- "fr": "ensemble ObjectAsynch bug après hors ligne résolu",
91
- "it": "set bug ObjectAsynch dopo risolto offline",
92
- "es": "set ObjectAsynch bug después de la resolución offline",
93
- "pl": "zestaw Błąd obiektu Asynch po rozwiązaniu offline",
94
- "uk": "комплекти Об'єктАсинхронний помилка після офлайну",
95
- "zh-cn": "设定 离线后解析 ObjectAsynch 错误"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -171,9 +171,9 @@ class messagehandlerClass {
171
171
  break;
172
172
  case this.adapter.origin.chirpstack:
173
173
  decodedData[devEUI].object = decodedData[devEUI].decoded;
174
- decodedData[devEUI].uplink_message.rxInfo = [];
175
- decodedData[devEUI].uplink_message.rxInfo[0] = {};
176
- decodedData[devEUI].uplink_message.rxInfo[0].nsTime = decodedData[devEUI].time;
174
+ decodedData[devEUI].rxInfo = [];
175
+ decodedData[devEUI].rxInfo[0] = {};
176
+ decodedData[devEUI].rxInfo[0].nsTime = decodedData[devEUI].time;
177
177
  break;
178
178
  }
179
179
  this.assignDeviceInformation(decodedData[devEUI].id,decodedData[devEUI]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",