iobroker.lorawan 1.19.32 → 1.19.33

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.33 (2026-01-18)
27
+ * (BenAhrdt) sonoff bugfix aparrant_power
28
+
26
29
  ### 1.19.32 (2026-01-16)
27
30
  * (BenAhrdt) bugfix await this.ObjectExists
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.19.32",
4
+ "version": "1.19.33",
5
5
  "news": {
6
+ "1.19.33": {
7
+ "en": "sonoff bugfix aparrant_power",
8
+ "de": "sonoff bugfix aparrant_power",
9
+ "ru": "sonoff bugfix aparrant_power скачать бесплатно",
10
+ "pt": "sonoff bugfix aparrant_ power",
11
+ "nl": "sonoff bugfix aparrant_power",
12
+ "fr": "sonoff bugfix aparrant_power",
13
+ "it": "sonoff bugfix aparrant_power",
14
+ "es": "sonoff bugfix aparrant_power",
15
+ "pl": "sonoff bugfix aparrant _ power",
16
+ "uk": "gaeilge, english, українська..",
17
+ "zh-cn": "sonoff 错误修补parrant_power"
18
+ },
6
19
  "1.19.32": {
7
20
  "en": "bugfix await this.ObjectExists",
8
21
  "de": "bugfix warten darauf. ObjekteExperimente",
@@ -80,19 +93,6 @@
80
93
  "pl": "ustawienie wewnętrznego logowania do debugowania ścieżki w moście i zapytanie wpisów json",
81
94
  "uk": "встановлення внутрішнього входу в дебюговий шлях в мост і переробити записи json",
82
95
  "zh-cn": "设置内部日志以调试桥上的路径并查询 json 条目"
83
- },
84
- "1.19.26": {
85
- "en": "build internal logging",
86
- "de": "interne protokollierung erstellen",
87
- "ru": "построить внутренние лесозаготовки",
88
- "pt": "criar registro interno",
89
- "nl": "interne logging bouwen",
90
- "fr": "construire l'exploitation forestière interne",
91
- "it": "costruire logging interno",
92
- "es": "construir registro interno",
93
- "pl": "budować wewnętrzny logowanie",
94
- "uk": "створення внутрішнього входу",
95
- "zh-cn": "建立内部记录"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -1534,8 +1534,11 @@ class bridgeClass {
1534
1534
  } else if (role.includes('level.timer')) {
1535
1535
  attributes.entity_category = 'config';
1536
1536
  attributes.unit_of_measurement = normalizedUnit || 'min';
1537
- } else if (role.includes('power') && !normalizedUnitLower.includes('wh')) {
1538
- // Sonoff mit value.power.consumtion und kWh ausnehmen
1537
+ } else if (
1538
+ role.includes('power') &&
1539
+ !normalizedUnitLower.includes('wh') && // Sonoff mit kWh ausnehmen
1540
+ !normalizedUnitLower.includes('va') // Sonoff mit VA ausnehmen
1541
+ ) {
1539
1542
  attributes.device_class = 'power';
1540
1543
  attributes.unit_of_measurement = normalizedUnit || 'W';
1541
1544
  } else if (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.19.32",
3
+ "version": "1.19.33",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",