iobroker.lorawan 1.17.2 → 1.17.3

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.3 (2025-09-19)
27
+ * (BenAhrdt) Bugfix calling Foreign climate ids
28
+
26
29
  ### 1.17.2 (2025-09-19)
27
30
  * (BenAhrdt) Bugfix nameing of foreign states
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.17.2",
4
+ "version": "1.17.3",
5
5
  "news": {
6
+ "1.17.3": {
7
+ "en": "Bugfix calling Foreign climate ids",
8
+ "de": "Fehlerbehebung beim Aufrufen von Fremdklima-IDs.",
9
+ "ru": "Исправлена ошибка при вызове иностранных идентификаторов климата",
10
+ "pt": "Correção de bug ao chamar ids de clima estrangeiros",
11
+ "nl": "Bugfix voor het oproepen van vreemde klimaat-id's",
12
+ "fr": "Correction de bug pour l'appel des identifiants de climatisation étrangers",
13
+ "it": "Correzione bug nella chiamata degli ID di climi stranieri",
14
+ "es": "Corregido el problema al llamar a los identificadores climáticos extranjeros",
15
+ "pl": "Naprawiono błąd związany z wywoływaniem identyfikatorów obcych dla klimatyzacji.",
16
+ "uk": "Виправлена помилка при виклику іноземних ідентифікаторів клімату",
17
+ "zh-cn": "修复调用Foreign climate ids时的错误"
18
+ },
6
19
  "1.17.2": {
7
20
  "en": "Bugfix nameing of foreign states",
8
21
  "de": "Behebung der Benennung von ausländischen Bundesländern",
@@ -80,19 +93,6 @@
80
93
  "pl": "Naprawiono błąd zmieniający zapytanie Bridgeurl na adres url LoRaWAN",
81
94
  "uk": "виправлення помилки зміни запиту Bridgeurl на URL протоколу LoRaWAN",
82
95
  "zh-cn": "修复将Bridgeurl查询更改为LoRaWAN网址"
83
- },
84
- "1.16.9": {
85
- "en": "bring connectiontest to bridge config\nBugfixing deaktivate LNS connection search in case of empty url\nBugfixing defaultvalues for json states.",
86
- "de": "Füge den Verbindungstest zur Bridge-Konfiguration hinzu.\nFehlerbehebung: Deaktivierung der LNS-Verbindungssuche im Falle einer leeren URL\nBeheben von Standardwerten für JSON-Stati.",
87
- "ru": "Добавить тест соединения в настройки моста.\nИсправлена ошибка, отключающая поиск подключения LNS в случае пустого URL-адреса.\nИсправление ошибок значений по умолчанию для состояний JSON.",
88
- "pt": "Adicionar teste de conexão à configuração da ponte\nCorreção de bug: desativar a busca de conexão LNS no caso de URL vazia\nCorreção de bug nos valores padrão para estados json.",
89
- "nl": "Voeg de verbindingstest toe aan de bridge-configuratie.\nBugfix: deactiveer LNS-verbinding zoeken in geval van een lege URL.\nOplossing van standaardwaarden voor json-stateno.",
90
- "fr": "ajouter le test de connexion à la configuration du pont\nCorrection de bugs: désactivation de la recherche de connexion LNS en cas d'URL vide\nCorrection de bugs pour les valeurs par défaut des états JSON.",
91
- "it": "portare il test di connessione alla configurazione del bridge\nCorrezione di bug: disattivata la ricerca della connessione LNS in caso di URL vuoto\nCorrezione dei valori predefiniti per gli stati JSON.",
92
- "es": "agregar prueba de conexión a la configuración del puente\nCorrección de errores: desactivar la búsqueda de conexión LNS en caso de URL vacía\nCorrección de errores en los valores predeterminados para los estados JSON.",
93
- "pl": "Dodaj test połączenia do konfiguracji mostka\nNaprawiono problem z deaktywacją wyszukiwania połączenia LNS w przypadku pustego adresu URL.\nNaprawiono wartości domyślne dla stanów typu json.",
94
- "uk": "Додайте перевірку з'єднання до налаштувань моста.\nВиправлення помилки в деактивації пошуку підключення LNS у випадку порожнього URL\nВиправлення значень за замовчуванням для станів JSON.",
95
- "zh-cn": "将连接测试添加到桥接器配置\n修复Bug:如果URL为空,则禁用LNS连接搜索。\n修复了JSON状态的默认值。"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -1603,7 +1603,7 @@ class bridgeClass {
1603
1603
  this.adapter.log.debug(`Function ${activeFunction} started.`);
1604
1604
  try {
1605
1605
  // Assign the Ids (use the codenameing of discoverClimate)
1606
- if (!(await this.generateClimateIds(config))) {
1606
+ if (!(await this.generateForeignClimateIds(config))) {
1607
1607
  this.adapter.log.warn(
1608
1608
  `The Foreign Climate config is not complete, or has error(s): ${config.ClimateName}`,
1609
1609
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.17.2",
3
+ "version": "1.17.3",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",