iobroker.lorawan 1.19.28 → 1.19.29

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.19.29 (2026-01-16)
27
+ * (BenAhrdt) bugfix tilt min & max
28
+
26
29
  ### 1.19.28 (2026-01-16)
27
30
  * (BenAhrdt) add logging possibility info, debug, warn, error to internal logging
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.19.28",
4
+ "version": "1.19.29",
5
5
  "news": {
6
+ "1.19.29": {
7
+ "en": "bugfix tilt min & max",
8
+ "de": "bugfix neigung min & max",
9
+ "ru": "багфикс tilt min & max",
10
+ "pt": "min & max da inclinação do erro de correção",
11
+ "nl": "bugfix tilt min & max",
12
+ "fr": "bugfix inclinaison min & max",
13
+ "it": "bugfix tilt min & max",
14
+ "es": "bugfix tilt min < max",
15
+ "pl": "przechył bugfix min & max",
16
+ "uk": "виправлення tilt min & макс",
17
+ "zh-cn": "最大时长( u)"
18
+ },
6
19
  "1.19.28": {
7
20
  "en": "add logging possibility info, debug, warn, error to internal logging",
8
21
  "de": "hinzufügen von logging-möglichkeiten info, debug, warnen, fehler in der internen protokollierung",
@@ -80,19 +93,6 @@
80
93
  "pl": "więcej debuglogging w zagranicznych Odkryj",
81
94
  "uk": "більш детальна інформація Про нас",
82
95
  "zh-cn": "更多外国调试日志 发现"
83
- },
84
- "1.19.22": {
85
- "en": "change Check getForeigenObjectAsync to foreignObjectExists (chek config objects)",
86
- "de": "änderung Anreise nach Foreigen ObjectAsync zu fremd ObjectExists (chek config Objekte)",
87
- "ru": "изменение Проверить GetForeigen ObjectAsync для иностранных ObjectExists (объекты чек-конфигурирования)",
88
- "pt": "alteração Verificar getForeigen ObjetoAsync para estrangeiro O objeto existe (objetos de configuração do 'chek')",
89
- "nl": "verandering Check getForeigen ObjectAsync naar vreemd ObjectExists (chek config objecten)",
90
- "fr": "changement Vérifiez getForeigen ObjetAsync à étranger ObjetExists (chèquer les objets de configuration)",
91
- "it": "cambiamento Controllare il prezzo ObjectAsync per stranieri ObjectExists (chek oggetti di configurazione)",
92
- "es": "cambio Comprobación de Foreigen ObjectAsync to foreign ObjectExists (chek config objects)",
93
- "pl": "zmiana Sprawdź getForeigen ObjectAsync do zagranicy ObjectExists (obiekty konfiguracyjne chek)",
94
- "uk": "увійти Перевірити getForeigen Об'єкт Об'єктExists (пристрої налаштування)",
95
- "zh-cn": "变动 检查是否获取 Foreigen 对象同步到外国 对象Exists (切克配置对象)"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -3071,12 +3071,12 @@ class bridgeClass {
3071
3071
  if (tiltObject.common.max) {
3072
3072
  DiscoveryPayload.tilt_max = tiltObject.common.max;
3073
3073
  } else {
3074
- DiscoveryPayload.brightness_scale = 100;
3074
+ DiscoveryPayload.tilt_max = 100;
3075
3075
  }
3076
3076
  if (tiltObject.common.min) {
3077
- DiscoveryPayload.tilt_max = tiltObject.common.min;
3077
+ DiscoveryPayload.tilt_min = tiltObject.common.min;
3078
3078
  } else {
3079
- DiscoveryPayload.brightness_scale = 0;
3079
+ DiscoveryPayload.tilt_min = 0;
3080
3080
  }
3081
3081
  }
3082
3082
  if (config.CoverIds.numberSignal || config.CoverIds.openSignal || config.CoverIds.closedSignal) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.19.28",
3
+ "version": "1.19.29",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",