iobroker.pv-notifications 1.2.2 → 1.2.4
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 +21 -0
- package/README.md +16 -2
- package/admin/jsonConfig.json +10 -0
- package/io-package.json +11 -1
- package/package.json +2 -2
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
|
|
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.4 (2026-03-02)
|
|
348
|
+
|
|
349
|
+
* (FIX) Added LICENSE file (E190 fix)
|
|
350
|
+
* (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)
|
|
351
|
+
|
|
352
|
+
### 1.2.3 (2026-03-02)
|
|
353
|
+
|
|
354
|
+
* (FIX) Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields (E5507 fix)
|
|
355
|
+
|
|
342
356
|
### 1.2.2 (2026-03-02)
|
|
343
357
|
|
|
344
358
|
* (FIX) Weekly statistics: Now uses weeklyProduction/weeklyConsumption/weeklyFeedIn/weeklyGridPower fields instead of daily values
|
package/admin/jsonConfig.json
CHANGED
|
@@ -303,44 +303,54 @@
|
|
|
303
303
|
"quietModeStart": {
|
|
304
304
|
"type": "text",
|
|
305
305
|
"label": "label_quietModeStart",
|
|
306
|
+
"xs": 12,
|
|
306
307
|
"sm": 3,
|
|
307
308
|
"md": 3,
|
|
308
309
|
"lg": 3,
|
|
310
|
+
"xl": 3,
|
|
309
311
|
"default": "12:00",
|
|
310
312
|
"tooltip": "tooltip_quietModeStart"
|
|
311
313
|
},
|
|
312
314
|
"quietModeEnd": {
|
|
313
315
|
"type": "text",
|
|
314
316
|
"label": "label_quietModeEnd",
|
|
317
|
+
"xs": 12,
|
|
315
318
|
"sm": 3,
|
|
316
319
|
"md": 3,
|
|
317
320
|
"lg": 3,
|
|
321
|
+
"xl": 3,
|
|
318
322
|
"default": "15:00",
|
|
319
323
|
"tooltip": "tooltip_quietModeEnd"
|
|
320
324
|
},
|
|
321
325
|
"intermediateSteps": {
|
|
322
326
|
"type": "text",
|
|
323
327
|
"label": "label_intermediateSteps",
|
|
328
|
+
"xs": 12,
|
|
324
329
|
"sm": 3,
|
|
325
330
|
"md": 3,
|
|
326
331
|
"lg": 3,
|
|
332
|
+
"xl": 3,
|
|
327
333
|
"tooltip": "tooltip_intermediateSteps"
|
|
328
334
|
},
|
|
329
335
|
"minIntervalFull": {
|
|
330
336
|
"type": "number",
|
|
331
337
|
"label": "label_minIntervalFull",
|
|
338
|
+
"xs": 12,
|
|
332
339
|
"sm": 3,
|
|
333
340
|
"md": 3,
|
|
334
341
|
"lg": 3,
|
|
342
|
+
"xl": 3,
|
|
335
343
|
"min": 1,
|
|
336
344
|
"max": 120
|
|
337
345
|
},
|
|
338
346
|
"minIntervalEmpty": {
|
|
339
347
|
"type": "number",
|
|
340
348
|
"label": "label_minIntervalEmpty",
|
|
349
|
+
"xs": 12,
|
|
341
350
|
"sm": 3,
|
|
342
351
|
"md": 3,
|
|
343
352
|
"lg": 3,
|
|
353
|
+
"xl": 3,
|
|
344
354
|
"min": 1,
|
|
345
355
|
"max": 120
|
|
346
356
|
},
|
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "pv-notifications",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.4",
|
|
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.4": {
|
|
33
|
+
"en": "Added LICENSE file and fixed copyright formatting (W6009/W6011/W7004 fixes)",
|
|
34
|
+
"de": "LICENSE-Datei hinzugefügt und Copyright-Formatierung korrigiert (W6009/W6011/W7004 Fixes)",
|
|
35
|
+
"ru": "Добавлен файл LICENSE и исправлено форматирование авторских прав (исправления W6009/W6011/W7004)"
|
|
36
|
+
},
|
|
37
|
+
"1.2.3": {
|
|
38
|
+
"en": "Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields in admin UI (E5507 fix)",
|
|
39
|
+
"de": "Größenattribute (xs, xl) für minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd Felder im Admin-UI hinzugefügt (E5507 Fix)",
|
|
40
|
+
"ru": "Добавлены атрибуты размеров (xs, xl) для полей minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd в админ-интерфейсе (исправление E5507)"
|
|
41
|
+
},
|
|
32
42
|
"1.2.2": {
|
|
33
43
|
"en": "Fixed weekly statistics: Now uses weeklyProduction/weeklyConsumption/weeklyFeedIn/weeklyGridPower fields instead of daily values",
|
|
34
44
|
"de": "Wochenstatistik fixiert: Verwendet jetzt weeklyProduction/weeklyConsumption/weeklyFeedIn/weeklyGridPower Felder statt Tageswerten",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.pv-notifications",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "PV-Anlage Batterie-Status Telegram Benachrichtigungen",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Alex1808 via LLM: Qwen",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@iobroker/adapter-dev": "^1.5.0",
|
|
54
54
|
"@iobroker/eslint-config": "^2.2.0",
|
|
55
55
|
"@iobroker/testing": "^5.2.2",
|
|
56
|
-
"@types/node": "^25.3.
|
|
56
|
+
"@types/node": "^25.3.3",
|
|
57
57
|
"typescript": "~5.9.3"
|
|
58
58
|
},
|
|
59
59
|
"bugs": {
|