iobroker.lorawan 1.18.47 → 1.18.48

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.18.48 (2025-12-16)
27
+ * (BenAhrdt) Set the selection to usedNames (application and device)
28
+
26
29
  ### 1.18.47 (2025-12-09)
27
30
  * (BenAhrdt) CustomSend becomes possibility for different order of parameters.
28
31
  payloadInHex, port, confirmed, priority, push (push is written as string 'push')
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.47",
4
+ "version": "1.18.48",
5
5
  "news": {
6
+ "1.18.48": {
7
+ "en": "Set the selection to usedNames (application and device)",
8
+ "de": "Setzen Sie die Auswahl auf gebrauchtNamen (Anwendung und Gerät)",
9
+ "ru": "Установите выбор используемых имен (приложения и устройства)",
10
+ "pt": "Define a seleção para nomes usados (aplicação e dispositivo)",
11
+ "nl": "De selectie instellen op gebruikte Namen (toepassing en apparaat)",
12
+ "fr": "Définissez la sélection aux noms utilisés (application et périphérique)",
13
+ "it": "Impostare la selezione per i nomi utilizzati (applicazione e dispositivo)",
14
+ "es": "Establecer la selección para utilizarNames (aplicación y dispositivo)",
15
+ "pl": "Ustaw wybór na używane Nazwy (aplikacja i urządzenie)",
16
+ "uk": "Налаштуйте вибір для використанняНазви (застосування та пристрій)",
17
+ "zh-cn": "将选中区域设定为使用的名称( 应用程序和设备)"
18
+ },
6
19
  "1.18.47": {
7
20
  "en": "* CustomSend becomes possibility for different order of parameters.\n payloadInHex, port, confirmed, priority, push (push is written as string 'push')",
8
21
  "de": "* CustomSend wird Möglichkeit für verschiedene Parameterreihenfolge.\nnutzlast InHex, Port, bestätigt, Priorität, Push (Push wird als String 'Push' geschrieben)",
@@ -80,19 +93,6 @@
80
93
  "pl": "zmiana bramy na garaż _ door w binarnym _ sensor",
81
94
  "uk": "змінити ворота в гараж_критий в бінарних_сенсор",
82
95
  "zh-cn": "在二进制中将门改为车库_门_传感器"
83
- },
84
- "1.18.41": {
85
- "en": "change sending the payload in case of light",
86
- "de": "änderung des sendens der nutzlast bei licht",
87
- "ru": "изменение отправки полезной нагрузки в случае света",
88
- "pt": "alterar o envio da carga útil em caso de luz",
89
- "nl": "verandering in het verzenden van de lading in geval van licht",
90
- "fr": "changement d'envoi de la charge utile en cas de lumière",
91
- "it": "cambiare inviando il carico utile in caso di luce",
92
- "es": "cambio enviar la carga útil en caso de luz",
93
- "pl": "zmiana wysyłania ładunku w przypadku światła",
94
- "uk": "змінити відправлення корисного навантаження при світлі",
95
- "zh-cn": "更改发送有效载荷的光线"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/main.js CHANGED
@@ -1343,7 +1343,7 @@ class Lorawan extends utils.Adapter {
1343
1343
  if (adapterObject.type === 'folder' && adapterObject._id.endsWith('uplink')) {
1344
1344
  adapterObject._id = this.removeNamespace(adapterObject._id);
1345
1345
  const changeInfo = await this.getChangeInfo(adapterObject._id);
1346
- const label = changeInfo?.applicationName;
1346
+ const label = changeInfo?.usedApplicationName;
1347
1347
  const value = changeInfo?.applicationId;
1348
1348
  if (!currentApplications[value]) {
1349
1349
  currentApplications[value] = value;
@@ -1375,7 +1375,7 @@ class Lorawan extends utils.Adapter {
1375
1375
  ) {
1376
1376
  adapterObject._id = this.removeNamespace(adapterObject._id);
1377
1377
  const changeInfo = await this.getChangeInfo(adapterObject._id);
1378
- const label = changeInfo?.deviceId;
1378
+ const label = changeInfo?.usedDeviceId;
1379
1379
  const value = changeInfo?.deviceEUI;
1380
1380
  devices[myCount] = { label: label, value: value };
1381
1381
  myCount++;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.47",
3
+ "version": "1.18.48",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",