iobroker.pv-notifications 1.2.3 → 1.2.5

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 sadam6752-tech sadam6752@gmail.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -318,9 +318,14 @@ Between **12:00 and 15:00** (configurable), **all** notifications are suppressed
318
318
 
319
319
  MIT License
320
320
 
321
- Copyright (c) 2025-2026 sadam6752-tech sadam6752@gmail.com
321
+ Copyright (c) 2025-2026 sadam6752-tech sadam6752@gmail.com
322
322
 
323
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
323
+ Permission is hereby granted, free of charge, to any person obtaining a copy
324
+ of this software and associated documentation files (the "Software"), to deal
325
+ in the Software without restriction, including without limitation the rights
326
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
327
+ copies of the Software, and to permit persons to whom the Software is
328
+ furnished to do so, subject to the following conditions:
324
329
 
325
330
  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
326
331
 
@@ -339,6 +344,15 @@ sadam6752@gmail.com
339
344
  ### **WORK IN PROGRESS**
340
345
  -->
341
346
 
347
+ ### 1.2.5 (2026-03-02)
348
+
349
+ * (FIX) Added size attributes (xs, xl) for monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime fields (E5507 fix)
350
+
351
+ ### 1.2.4 (2026-03-02)
352
+
353
+ * (FIX) Added LICENSE file (E190 fix)
354
+ * (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
+
342
356
  ### 1.2.3 (2026-03-02)
343
357
 
344
358
  * (FIX) Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields (E5507 fix)
@@ -357,9 +357,11 @@
357
357
  "minIntervalIntermediate": {
358
358
  "type": "number",
359
359
  "label": "label_minIntervalIntermediate",
360
+ "xs": 12,
360
361
  "sm": 3,
361
362
  "md": 3,
362
363
  "lg": 3,
364
+ "xl": 3,
363
365
  "min": 1,
364
366
  "max": 120,
365
367
  "default": 30
@@ -375,17 +377,21 @@
375
377
  "statsDayTime": {
376
378
  "type": "text",
377
379
  "label": "label_statsDayTime",
380
+ "xs": 12,
378
381
  "sm": 4,
379
382
  "md": 4,
380
383
  "lg": 4,
384
+ "xl": 4,
381
385
  "tooltip": "tooltip_statsDayTime"
382
386
  },
383
387
  "statsWeekDay": {
384
388
  "type": "number",
385
389
  "label": "label_statsWeekDay",
390
+ "xs": 12,
386
391
  "sm": 3,
387
392
  "md": 3,
388
393
  "lg": 3,
394
+ "xl": 3,
389
395
  "min": 0,
390
396
  "max": 6,
391
397
  "default": 0,
@@ -394,9 +400,11 @@
394
400
  "statsWeekTime": {
395
401
  "type": "text",
396
402
  "label": "label_statsWeekTime",
403
+ "xs": 12,
397
404
  "sm": 3,
398
405
  "md": 3,
399
406
  "lg": 3,
407
+ "xl": 3,
400
408
  "default": "10:00",
401
409
  "tooltip": "tooltip_statsWeekTime"
402
410
  },
@@ -411,9 +419,11 @@
411
419
  "monthlyStatsEnabled": {
412
420
  "type": "checkbox",
413
421
  "label": "label_monthlyStatsEnabled",
422
+ "xs": 12,
414
423
  "sm": 6,
415
424
  "md": 6,
416
425
  "lg": 6,
426
+ "xl": 6,
417
427
  "default": false
418
428
  },
419
429
  "monthlyStatsDay": {
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "pv-notifications",
4
- "version": "1.2.3",
4
+ "version": "1.2.5",
5
5
  "titleLang": {
6
6
  "en": "PV Notifications",
7
7
  "de": "PV-Benachrichtigungen",
@@ -29,7 +29,16 @@
29
29
  "zh-cn": "发送 Telegram 通知用于 PV 电池状态"
30
30
  },
31
31
  "news": {
32
- "1.2.3": {
32
+ "1.2.5": {
33
+ "en": "Added size attributes (xs, xl) for monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime fields (E5507 fix)",
34
+ "de": "Größenattribute (xs, xl) für monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime Felder hinzugefügt (E5507 Fix)",
35
+ "ru": "Добавлены атрибуты размеров (xs, xl) для полей monthlyStatsEnabled, minIntervalIntermediate, statsDayTime, statsWeekDay, statsWeekTime (исправление E5507)"
36
+ },
37
+ "1.2.4": {
38
+ "en": "Added LICENSE file and fixed copyright formatting (W6009/W6011/W7004 fixes)",
39
+ "de": "LICENSE-Datei hinzugefügt und Copyright-Formatierung korrigiert (W6009/W6011/W7004 Fixes)",
40
+ "ru": "Добавлен файл LICENSE и исправлено форматирование авторских прав (исправления W6009/W6011/W7004)"
41
+ },
33
42
  "en": "Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields in admin UI (E5507 fix)",
34
43
  "de": "Größenattribute (xs, xl) für minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd Felder im Admin-UI hinzugefügt (E5507 Fix)",
35
44
  "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.3",
3
+ "version": "1.2.5",
4
4
  "description": "PV-Anlage Batterie-Status Telegram Benachrichtigungen",
5
5
  "author": {
6
6
  "name": "Alex1808 via LLM: Qwen",