iobroker.lorawan 1.17.12 → 1.17.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,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.17.13 (2025-09-24)
27
+ * (BenAhrdt) Bugfix discover new devices
28
+
26
29
  ### 1.17.12 (2025-09-24)
27
30
  * (BenAhrdt) Virtual Mode in default selected for Climate Entities
28
31
  * (BenAhrdt) improve hidden attribute for climate entitie in LoRaWAN
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.17.12",
4
+ "version": "1.17.13",
5
5
  "news": {
6
+ "1.17.13": {
7
+ "en": "Bugfix discover new devices",
8
+ "de": "Bugfix neue Geräte entdecken",
9
+ "ru": "Bugfix открывает новые устройства",
10
+ "pt": "Bugfix descobre novos dispositivos",
11
+ "nl": "Bugfix nieuwe apparaten ontdekken",
12
+ "fr": "Bugfix découvrez de nouveaux périphériques",
13
+ "it": "Bugfix scopri nuovi dispositivi",
14
+ "es": "Bugfix descubre nuevos dispositivos",
15
+ "pl": "Bugfix odkryj nowe urządzenia",
16
+ "uk": "Виправлення помилок",
17
+ "zh-cn": "错误fix 发现新设备"
18
+ },
6
19
  "1.17.12": {
7
20
  "en": "Virtual Mode in default selected for Climate Entities\nimprove hidden attribute for climate entitie in LoRaWAN\nchange discovery delete {} => ''",
8
21
  "de": "Virtueller Modus in Standardeinstellung für Climate Entities\nverbessern Sie das versteckte Attribut für den Klimaschutz in LoRaWAN\nänderung der entdeckung löschen {} => ' '",
@@ -80,19 +93,6 @@
80
93
  "pl": "Dostępny tryb wirtualny dla zagranicznych jednostek klimatyzacyjnych.",
81
94
  "uk": "Доступний режим віртуальних сутностей для зовнішнього клімату",
82
95
  "zh-cn": "可用于外部气候实体的虚拟模式"
83
- },
84
- "1.17.6": {
85
- "en": "Check foreign state id in climate improved",
86
- "de": "Überprüfen von ausländischen Status-IDs in der verbesserten Klimasteuerung",
87
- "ru": "Проверка идентификатора иностранного состояния в улучшенном режиме климата",
88
- "pt": "Verificar id do estado estrangeiro na melhoria do clima.",
89
- "nl": "Controleer het buitenlandse statuselement in de verbeterde klimaat instellingen.",
90
- "fr": "Vérifier l'identifiant de l'état étranger amélioré dans le système de climatisation",
91
- "it": "Controllato l'ID dello stato estero in clima migliorato",
92
- "es": "Comprobación de la identificación del estado extranjero en clima mejorado",
93
- "pl": "Sprawdź poprawność identyfikatora stanu zagranicznego w ulepszonym module klimatyzacji",
94
- "uk": "Перевірено зовнішній ідентифікатор стану в кліматі покращений",
95
- "zh-cn": "改进了气候模块中检查外部状态id"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -998,7 +998,7 @@ class bridgeClass {
998
998
  const device = DiscoveryObject.informations.usedDeviceId;
999
999
  let message = `${this.adapter.i18nTranslation['new device discovered']}.\n${this.adapter.i18nTranslation['Device']}: ${device}`;
1000
1000
  if (DiscoveryObject.informations.usedApplicationName) {
1001
- const application = this.DiscoveredIds[id].informations.usedApplicationName;
1001
+ const application = DiscoveryObject.informations.usedApplicationName;
1002
1002
  message += `\n${this.adapter.i18nTranslation['Application']}: ${application}`;
1003
1003
  }
1004
1004
  const notificationId = `${this.adapter.namespace}.${this.adapter.bridge.Words.notification}${this.adapter.bridge.GeneralId}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.17.12",
3
+ "version": "1.17.13",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",