iobroker.pv-notifications 1.2.3 → 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 +12 -2
- package/io-package.json +6 -1
- package/package.json +1 -1
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,11 @@ 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
|
+
|
|
342
352
|
### 1.2.3 (2026-03-02)
|
|
343
353
|
|
|
344
354
|
* (FIX) Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields (E5507 fix)
|
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,11 @@
|
|
|
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
|
+
},
|
|
32
37
|
"1.2.3": {
|
|
33
38
|
"en": "Added size attributes (xs, xl) for minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd fields in admin UI (E5507 fix)",
|
|
34
39
|
"de": "Größenattribute (xs, xl) für minIntervalFull, minIntervalEmpty, intermediateSteps, quietModeStart, quietModeEnd Felder im Admin-UI hinzugefügt (E5507 Fix)",
|