iobroker.sigenergy 1.8.21 → 1.8.23
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 +1 -1
- package/README.md +7 -1
- package/io-package.json +13 -13
- package/main.js +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 ssbingo <s.sternitzke@online.de>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -141,6 +141,12 @@ Status and power readings for the DC charger.
|
|
|
141
141
|
---
|
|
142
142
|
|
|
143
143
|
## Changelog
|
|
144
|
+
## 1.8.23 (2026-03-26)
|
|
145
|
+
- (ssbingo) Fixed copyright year to 2026 in LICENSE and README; technical corrections: CI/CD workflow, linting, tests
|
|
146
|
+
|
|
147
|
+
## 1.8.22 (2026-03-26)
|
|
148
|
+
- (ssbingo) Technical corrections: CI/CD workflow (OIDC publish), linting setup, standard tests restored
|
|
149
|
+
|
|
144
150
|
## 1.8.21 (2026-03-26)
|
|
145
151
|
- (ssbingo) Technical corrections: CI/CD workflow (OIDC publish), linting setup, standard tests restored
|
|
146
152
|
|
|
@@ -488,7 +494,7 @@ Status and power readings for the DC charger.
|
|
|
488
494
|
## License
|
|
489
495
|
MIT License
|
|
490
496
|
|
|
491
|
-
Copyright (c)
|
|
497
|
+
Copyright (c) 2026 ssbingo <s.sternitzke@online.de>
|
|
492
498
|
|
|
493
499
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
494
500
|
of this software and associated documentation files (the "Software"), to deal
|
package/io-package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "sigenergy",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.23",
|
|
5
5
|
"news": {
|
|
6
|
-
"1.8.
|
|
7
|
-
"en": "(ssbingo)
|
|
8
|
-
"de": "(ssbingo)
|
|
9
|
-
"ru": "(ssbingo)
|
|
10
|
-
"pt": "(ssbingo)
|
|
11
|
-
"nl": "(ssbingo)
|
|
12
|
-
"fr": "(ssbingo)
|
|
13
|
-
"it": "(ssbingo)
|
|
14
|
-
"es": "(ssbingo)
|
|
15
|
-
"pl": "(ssbingo)
|
|
16
|
-
"uk": "(ssbingo)
|
|
17
|
-
"zh-cn": "(ssbingo)
|
|
6
|
+
"1.8.23": {
|
|
7
|
+
"en": "(ssbingo) Fixed copyright year to 2026 in LICENSE and README; technical corrections: CI/CD workflow, linting, tests",
|
|
8
|
+
"de": "(ssbingo) Copyright-Jahr auf 2026 korrigiert in LICENSE und README; technische Korrekturen: CI/CD-Workflow, Linting, Tests",
|
|
9
|
+
"ru": "(ssbingo) Исправлен год авторского права на 2026 в LICENSE и README; технические исправления: CI/CD, линтинг, тесты",
|
|
10
|
+
"pt": "(ssbingo) Ano de copyright corrigido para 2026 em LICENSE e README; correções técnicas: CI/CD, linting, testes",
|
|
11
|
+
"nl": "(ssbingo) Copyrightjaar gecorrigeerd naar 2026 in LICENSE en README; technische correcties: CI/CD, linting, tests",
|
|
12
|
+
"fr": "(ssbingo) Année de copyright corrigée à 2026 dans LICENSE et README ; corrections techniques : CI/CD, linting, tests",
|
|
13
|
+
"it": "(ssbingo) Anno di copyright corretto a 2026 in LICENSE e README; correzioni tecniche: CI/CD, linting, test",
|
|
14
|
+
"es": "(ssbingo) Año de copyright corregido a 2026 en LICENSE y README; correcciones técnicas: CI/CD, linting, pruebas",
|
|
15
|
+
"pl": "(ssbingo) Poprawiono rok praw autorskich na 2026 w LICENSE i README; korekty techniczne: CI/CD, linting, testy",
|
|
16
|
+
"uk": "(ssbingo) Виправлено рік авторського права на 2026 у LICENSE та README; технічні виправлення: CI/CD, лінтинг, тести",
|
|
17
|
+
"zh-cn": "(ssbingo) 修正LICENSE和README中的版权年份为2026;技术修正:CI/CD工作流、代码检查、测试"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"titleLang": {
|
package/main.js
CHANGED
|
@@ -800,7 +800,7 @@ class Sigenergy extends utils.Adapter {
|
|
|
800
800
|
merged.length === 0
|
|
801
801
|
? `No SigenMicro devices found in range ${from}–${to}. Check connection and ID range.`
|
|
802
802
|
: `Found ${merged.length} device(s): ${deviceList}.` +
|
|
803
|
-
|
|
803
|
+
` Use the SigenMicro admin tab to enable/disable devices.`;
|
|
804
804
|
if (obj.callback) {
|
|
805
805
|
this.sendTo(obj.from, obj.command, { success: true, message }, obj.callback);
|
|
806
806
|
}
|