iobroker.sigenergy 1.8.21 → 1.8.22
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 +3 -0
- package/io-package.json +2 -2
- package/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -141,6 +141,9 @@ Status and power readings for the DC charger.
|
|
|
141
141
|
---
|
|
142
142
|
|
|
143
143
|
## Changelog
|
|
144
|
+
## 1.8.22 (2026-03-26)
|
|
145
|
+
- (ssbingo) Technical corrections: CI/CD workflow (OIDC publish), linting setup, standard tests restored
|
|
146
|
+
|
|
144
147
|
## 1.8.21 (2026-03-26)
|
|
145
148
|
- (ssbingo) Technical corrections: CI/CD workflow (OIDC publish), linting setup, standard tests restored
|
|
146
149
|
|
package/io-package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "sigenergy",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.22",
|
|
5
5
|
"news": {
|
|
6
|
-
"1.8.
|
|
6
|
+
"1.8.22": {
|
|
7
7
|
"en": "(ssbingo) Technical corrections: CI/CD workflow (OIDC publish), linting setup, standard tests restored",
|
|
8
8
|
"de": "(ssbingo) Technische Korrekturen: CI/CD-Workflow (OIDC-Publish), Linting-Setup, Standard-Tests wiederhergestellt",
|
|
9
9
|
"ru": "(ssbingo) Технические исправления: рабочий процесс CI/CD (публикация OIDC), настройка линтинга, стандартные тесты восстановлены",
|
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
|
}
|