iobroker.lorawan 1.18.59 → 1.18.60

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.60 (2026-01-01)
27
+ * (BenAhrdt) bugfix errorlogging
28
+
26
29
  ### 1.18.59 (2026-01-01)
27
30
  * (BenAhrdt) Chuck checkAllStatesForBridgeWork for better performance
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.18.59",
4
+ "version": "1.18.60",
5
5
  "news": {
6
+ "1.18.60": {
7
+ "en": "bugfix errorlogging",
8
+ "de": "fehlerbehebung von fehlern",
9
+ "ru": "bugfix ошибка",
10
+ "pt": "erro de correção",
11
+ "nl": "bugfix foutloggen",
12
+ "fr": "bugfix errorlogging",
13
+ "it": "bugfix errorelogging",
14
+ "es": "error bugfixlogging",
15
+ "pl": "błąd bugfix",
16
+ "uk": "повідомлень про помилку",
17
+ "zh-cn": "错误修正错误日志"
18
+ },
6
19
  "1.18.59": {
7
20
  "en": "Chuck checkAllStatesForBridgeWork for better performance",
8
21
  "de": "Chuck-Check AllStatesForBridgeWork für bessere Leistung",
@@ -80,19 +93,6 @@
80
93
  "pl": "dodaj '.' do folderów w zaznaczeniu konfiguracyjnym",
81
94
  "uk": "додати '.' до папок у вибраному конфігурації",
82
95
  "zh-cn": "在配置选中的文件夹中添加“. ”"
83
- },
84
- "1.18.53": {
85
- "en": "add possibility to add folders to",
86
- "de": "die möglichkeit hinzufügen von ordnern",
87
- "ru": "добавить возможность добавления папок в",
88
- "pt": "adicionar a possibilidade de adicionar pastas",
89
- "nl": "mogelijkheid toevoegen om mappen toe te voegen aan",
90
- "fr": "ajouter la possibilité d'ajouter des dossiers à",
91
- "it": "aggiungere la possibilità di aggiungere cartelle a",
92
- "es": "añadir la posibilidad de añadir carpetas para",
93
- "pl": "dodać możliwość dodawania folderów do",
94
- "uk": "додати можливість додати папки до",
95
- "zh-cn": "添加文件夹到"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -1770,7 +1770,6 @@ class bridgeClass {
1770
1770
 
1771
1771
  const CHUNK_SIZE = 8; // 5–10 ist für ioBroker sehr gut
1772
1772
  let chunk = [];
1773
- this.adapter.log.error('Start');
1774
1773
  for (const adapterObject of Object.values(adapterObjects)) {
1775
1774
  if (adapterObject.type !== 'state') {
1776
1775
  continue;
@@ -1800,7 +1799,6 @@ class bridgeClass {
1800
1799
  }
1801
1800
  }
1802
1801
 
1803
- this.adapter.log.error('Ende');
1804
1802
  // Rest abarbeiten
1805
1803
  if (chunk.length > 0) {
1806
1804
  await Promise.all(chunk);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.18.59",
3
+ "version": "1.18.60",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",