iobroker.lorawan 1.17.3 → 1.17.4

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.4 (2025-09-19)
27
+ * (BenAhrdt) More debuglogging for Foreign Climate error
28
+
26
29
  ### 1.17.3 (2025-09-19)
27
30
  * (BenAhrdt) Bugfix calling Foreign climate ids
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.17.3",
4
+ "version": "1.17.4",
5
5
  "news": {
6
+ "1.17.4": {
7
+ "en": "More debuglogging for Foreign Climate error",
8
+ "de": "Mehr Debug-Logging für Fehler bei Fremdklima.",
9
+ "ru": "Больше отладочного журналирования для ошибки внешнего климата",
10
+ "pt": "Mais debuglogging para erro de Clima Estrangeiro",
11
+ "nl": "Meer debuglogging voor fouten in het buitenlandse klimaatsysteem",
12
+ "fr": "Plus de debuglogging pour l'erreur Foreign Climate",
13
+ "it": "Maggiori dettagli di debug per gli errori relativi al sistema di climatizzazione esterno",
14
+ "es": "Más depuración para el error de Clima Externo",
15
+ "pl": "Więcej debugowania dla błędu Foreign Climate",
16
+ "uk": "Більше відладки для помилки зовнішнього клімату",
17
+ "zh-cn": "为外部气候错误添加更多的调试日志记录"
18
+ },
6
19
  "1.17.3": {
7
20
  "en": "Bugfix calling Foreign climate ids",
8
21
  "de": "Fehlerbehebung beim Aufrufen von Fremdklima-IDs.",
@@ -80,19 +93,6 @@
80
93
  "pl": "Nie używaj typu enum bridge w przestrzeni nazw adaptera.\nPoprawiono nazewnictwo zagranicznych stanów, aby ułatwić ich identyfikację.",
81
94
  "uk": "не використовуйте перелік `bridge` в межах простору імен адаптера\nПокращено назви зовнішніх держав для зручності.",
82
95
  "zh-cn": "在适配器的命名空间中不要使用桥接枚举。\n改进外国状态的名称构建以弥合差异"
83
- },
84
- "1.16.10": {
85
- "en": "bugfix change query of Bridgeurl to LoRaWAN url",
86
- "de": "Fehlerbehebung Änderung der Abfrage von Bridge-URL zu LoRaWAN-URL",
87
- "ru": "Исправлена ошибка изменения запроса с Bridgeurl на LoRaWAN url.",
88
- "pt": "correção de bug: alteração da consulta do Bridgeurl para a url LoRaWAN",
89
- "nl": "bugfix verander query van Bridgeurl naar LoRaWAN-url",
90
- "fr": "corriger le changement de requête de Bridgeurl vers l'URL LoRaWAN",
91
- "it": "Modifica del bugfix della query del Bridgeurl in indirizzo LoRaWAN.",
92
- "es": "Corrección de errores: cambiar la consulta de Bridgeurl a la URL de LoRaWAN.",
93
- "pl": "Naprawiono błąd zmieniający zapytanie Bridgeurl na adres url LoRaWAN",
94
- "uk": "виправлення помилки зміни запиту Bridgeurl на URL протоколу LoRaWAN",
95
- "zh-cn": "修复将Bridgeurl查询更改为LoRaWAN网址"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -1787,10 +1787,12 @@ class bridgeClass {
1787
1787
  }*/
1788
1788
  for (const id of Object.values(climateIds)) {
1789
1789
  if (!(await this.adapter.objectExists(id)) && !id.endsWith(this.EndingVirtualMode)) {
1790
+ this.adapter.log.debug(`Id: ${id} does not exsit.`);
1790
1791
  return false;
1791
1792
  }
1792
1793
  }
1793
1794
  if (config.ClimateName === '') {
1795
+ this.adapter.log.debug(`Climate name is empty`);
1794
1796
  return false;
1795
1797
  }
1796
1798
  const indexOfSpace = config.ClimateName.indexOf(' -- ');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.17.3",
3
+ "version": "1.17.4",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",