iobroker.pv-notifications 1.2.5 → 1.2.7

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
@@ -344,12 +344,18 @@ sadam6752@gmail.com
344
344
  ### **WORK IN PROGRESS**
345
345
  -->
346
346
 
347
+ ### 1.2.7 (2026-03-02)
348
+
349
+ * (FIX) Fixed io-package.json JSON syntax error (invalid duplicate news section removed)
350
+
351
+ ### 1.2.6 (2026-03-02)
352
+
353
+ * (FIX) Added size attributes (xs, xl) for monthlyStatsDay, monthlyStatsTime, weatherEnabled, weatherInIntermediate, weatherInDailyStats, highProduction, highConsumption fields (E5507 fix)
354
+
347
355
  ### 1.2.5 (2026-03-02)
348
356
 
349
357
  * (FIX) Added size attributes (xs, xl) for monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime fields (E5507 fix)
350
358
 
351
- ### 1.2.4 (2026-03-02)
352
-
353
359
  * (FIX) Added LICENSE file (E190 fix)
354
360
  * (FIX) Copyright formatting: Added two trailing spaces to copyright lines in README.md, doc/de/README.md, doc/ru/README.md (W6009/W6011/W7004 fix)
355
361
 
@@ -429,9 +429,11 @@
429
429
  "monthlyStatsDay": {
430
430
  "type": "number",
431
431
  "label": "label_monthlyStatsDay",
432
+ "xs": 12,
432
433
  "sm": 3,
433
434
  "md": 3,
434
435
  "lg": 3,
436
+ "xl": 3,
435
437
  "min": 1,
436
438
  "max": 31,
437
439
  "default": 1,
@@ -440,9 +442,11 @@
440
442
  "monthlyStatsTime": {
441
443
  "type": "text",
442
444
  "label": "label_monthlyStatsTime",
445
+ "xs": 12,
443
446
  "sm": 3,
444
447
  "md": 3,
445
448
  "lg": 3,
449
+ "xl": 3,
446
450
  "default": "09:00",
447
451
  "tooltip": "tooltip_monthlyStatsTime"
448
452
  },
@@ -457,18 +461,22 @@
457
461
  "weatherEnabled": {
458
462
  "type": "checkbox",
459
463
  "label": "label_weatherEnabled",
464
+ "xs": 12,
460
465
  "sm": 12,
461
466
  "md": 12,
462
467
  "lg": 12,
468
+ "xl": 12,
463
469
  "default": true,
464
470
  "tooltip": "tooltip_weatherEnabled"
465
471
  },
466
472
  "weatherInIntermediate": {
467
473
  "type": "checkbox",
468
474
  "label": "label_weatherInIntermediate",
475
+ "xs": 12,
469
476
  "sm": 6,
470
477
  "md": 6,
471
478
  "lg": 6,
479
+ "xl": 6,
472
480
  "default": true,
473
481
  "tooltip": "tooltip_weatherInIntermediate",
474
482
  "disabled": "!weatherEnabled"
@@ -476,9 +484,11 @@
476
484
  "weatherInDailyStats": {
477
485
  "type": "checkbox",
478
486
  "label": "label_weatherInDailyStats",
487
+ "xs": 12,
479
488
  "sm": 6,
480
489
  "md": 6,
481
490
  "lg": 6,
491
+ "xl": 6,
482
492
  "default": true,
483
493
  "tooltip": "tooltip_weatherInDailyStats",
484
494
  "disabled": "!weatherEnabled"
@@ -534,16 +544,20 @@
534
544
  "highProduction": {
535
545
  "type": "number",
536
546
  "label": "label_highProduction",
547
+ "xs": 12,
537
548
  "sm": 6,
538
549
  "md": 6,
539
- "lg": 6
550
+ "lg": 6,
551
+ "xl": 6
540
552
  },
541
553
  "highConsumption": {
542
554
  "type": "number",
543
555
  "label": "label_highConsumption",
556
+ "xs": 12,
544
557
  "sm": 6,
545
558
  "md": 6,
546
- "lg": 6
559
+ "lg": 6,
560
+ "xl": 6
547
561
  }
548
562
  }
549
563
  }
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "pv-notifications",
4
- "version": "1.2.5",
4
+ "version": "1.2.7",
5
5
  "titleLang": {
6
6
  "en": "PV Notifications",
7
7
  "de": "PV-Benachrichtigungen",
@@ -29,6 +29,16 @@
29
29
  "zh-cn": "发送 Telegram 通知用于 PV 电池状态"
30
30
  },
31
31
  "news": {
32
+ "1.2.7": {
33
+ "en": "Fixed io-package.json JSON syntax error (invalid duplicate news section removed)",
34
+ "de": "io-package.json JSON-Syntaxfehler behoben (ungültiger doppelter news-Abschnitt entfernt)",
35
+ "ru": "Исправлена ошибка синтаксиса JSON в io-package.json (удален недопустимый дублирующийся раздел news)"
36
+ },
37
+ "1.2.6": {
38
+ "en": "Added size attributes (xs, xl) for monthlyStatsDay, monthlyStatsTime, weatherEnabled, weatherInIntermediate, weatherInDailyStats, highProduction, highConsumption fields (E5507 fix)",
39
+ "de": "Größenattribute (xs, xl) für monthlyStatsDay, monthlyStatsTime, weatherEnabled, weatherInIntermediate, weatherInDailyStats, highProduction, highConsumption Felder hinzugefügt (E5507 Fix)",
40
+ "ru": "Добавлены атрибуты размеров (xs, xl) для полей monthlyStatsDay, monthlyStatsTime, weatherEnabled, weatherInIntermediate, weatherInDailyStats, highProduction, highConsumption (исправление E5507)"
41
+ },
32
42
  "1.2.5": {
33
43
  "en": "Added size attributes (xs, xl) for monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime fields (E5507 fix)",
34
44
  "de": "Größenattribute (xs, xl) für monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime Felder hinzugefügt (E5507 Fix)",
@@ -39,6 +49,7 @@
39
49
  "de": "LICENSE-Datei hinzugefügt und Copyright-Formatierung korrigiert (W6009/W6011/W7004 Fixes)",
40
50
  "ru": "Добавлен файл LICENSE и исправлено форматирование авторских прав (исправления W6009/W6011/W7004)"
41
51
  },
52
+ "1.2.3": {
42
53
  "en": "Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields in admin UI (E5507 fix)",
43
54
  "de": "Größenattribute (xs, xl) für minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd Felder im Admin-UI hinzugefügt (E5507 Fix)",
44
55
  "ru": "Добавлены атрибуты размеров (xs, xl) для полей minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd в админ-интерфейсе (исправление E5507)"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.pv-notifications",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
4
4
  "description": "PV-Anlage Batterie-Status Telegram Benachrichtigungen",
5
5
  "author": {
6
6
  "name": "Alex1808 via LLM: Qwen",