iobroker.acinfinity 0.7.4 → 0.8.0
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 +15 -0
- package/admin/jsonConfig.json +6 -2
- package/io-package.json +14 -53
- 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 laurent Standard raspi@laurent-vite.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
|
@@ -205,6 +205,21 @@ Der Adapter erkennt automatisch alle verbundenen Controller und legt den State-B
|
|
|
205
205
|
|
|
206
206
|
## Changelog
|
|
207
207
|
|
|
208
|
+
### 0.8.0 (2026-03-01)
|
|
209
|
+
- Sicherheit: axios und form-data aktualisiert zur Behebung kritischer Sicherheitslücken (GHSA-4hjh-wcwx-xvwj, GHSA-43fc-jf86-j433, GHSA-fjxv-7rqg-78g4)
|
|
210
|
+
|
|
211
|
+
### 0.7.4 (2026-03-01)
|
|
212
|
+
- Admin-UI: Hinweistext zur eingeschränkten Gerätekompatibilität und Haftungsausschluss hinzugefügt
|
|
213
|
+
|
|
214
|
+
### 0.7.3 (2026-03-01)
|
|
215
|
+
- Admin-UI: Warnhinweis-Box entfernt, Einstellungslayout überarbeitet, Hilfe-Link korrigiert
|
|
216
|
+
|
|
217
|
+
### 0.7.2 (2026-03-01)
|
|
218
|
+
- Code: Migration auf ESLint 9 mit @iobroker/eslint-config
|
|
219
|
+
|
|
220
|
+
### 0.7.1 (2026-03-01)
|
|
221
|
+
- Wertebereiche zu Datenpunkt-Namen hinzugefügt für bessere Lesbarkeit
|
|
222
|
+
|
|
208
223
|
### 0.7.0 (2026-03-01)
|
|
209
224
|
- Adapter-Code vollständig mit Claude Code (Anthropic AI) auf Basis von homeassistant-acinfinity neu implementiert
|
|
210
225
|
- Alle 8 Port-Modi vollständig schreibbar aus ioBroker (Off / On / Auto / Timer to On / Timer to Off / Cycle / Schedule / VPD)
|
package/admin/jsonConfig.json
CHANGED
|
@@ -29,17 +29,21 @@
|
|
|
29
29
|
"newLine": true,
|
|
30
30
|
"min": 5,
|
|
31
31
|
"default": 30,
|
|
32
|
+
"xs": 12,
|
|
32
33
|
"sm": 6,
|
|
33
34
|
"md": 4,
|
|
34
35
|
"lg": 3,
|
|
35
|
-
"xl": 2
|
|
36
|
-
"xs": 6
|
|
36
|
+
"xl": 2
|
|
37
37
|
},
|
|
38
38
|
"disclaimer": {
|
|
39
39
|
"type": "staticText",
|
|
40
40
|
"text": "disclaimer",
|
|
41
41
|
"newLine": true,
|
|
42
42
|
"xs": 12,
|
|
43
|
+
"sm": 12,
|
|
44
|
+
"md": 12,
|
|
45
|
+
"lg": 12,
|
|
46
|
+
"xl": 12,
|
|
43
47
|
"style": {
|
|
44
48
|
"color": "#888888",
|
|
45
49
|
"fontSize": "0.85em",
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "acinfinity",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.8.0": {
|
|
7
|
+
"en": "Security: update axios and form-data to fix high and critical vulnerabilities",
|
|
8
|
+
"de": "Sicherheit: axios und form-data aktualisiert zur Behebung kritischer Sicherheitslücken",
|
|
9
|
+
"ru": "Безопасность: обновлены axios и form-data для устранения критических уязвимостей",
|
|
10
|
+
"pt": "Segurança: atualização do axios e form-data para corrigir vulnerabilidades críticas",
|
|
11
|
+
"nl": "Beveiliging: axios en form-data bijgewerkt om kritieke kwetsbaarheden te verhelpen",
|
|
12
|
+
"fr": "Sécurité: mise à jour d'axios et form-data pour corriger des vulnérabilités critiques",
|
|
13
|
+
"it": "Sicurezza: aggiornamento di axios e form-data per correggere vulnerabilità critiche",
|
|
14
|
+
"es": "Seguridad: actualización de axios y form-data para corregir vulnerabilidades críticas",
|
|
15
|
+
"pl": "Bezpieczeństwo: aktualizacja axios i form-data w celu usunięcia krytycznych luk bezpieczeństwa",
|
|
16
|
+
"uk": "Безпека: оновлено axios та form-data для усунення критичних вразливостей",
|
|
17
|
+
"zh-cn": "安全:更新 axios 和 form-data 以修复严重安全漏洞"
|
|
18
|
+
},
|
|
6
19
|
"0.7.4": {
|
|
7
20
|
"en": "Admin UI: add disclaimer note about limited device compatibility",
|
|
8
21
|
"de": "Admin-UI: Hinweis zur eingeschränkten Gerätekompatibilität hinzugefügt",
|
|
@@ -81,58 +94,6 @@
|
|
|
81
94
|
"uk": "Виправлення помилок та вдосконалення",
|
|
82
95
|
"zh-cn": "错误修复和改进"
|
|
83
96
|
},
|
|
84
|
-
"0.5.5": {
|
|
85
|
-
"en": "Bug fixes and improvements",
|
|
86
|
-
"de": "Fehlerbehebungen und Verbesserungen",
|
|
87
|
-
"ru": "Исправления ошибок и улучшения",
|
|
88
|
-
"pt": "Correções de bugs e melhorias",
|
|
89
|
-
"nl": "Bugfixes en verbeteringen",
|
|
90
|
-
"fr": "Corrections de bugs et améliorations",
|
|
91
|
-
"it": "Correzioni di bug e miglioramenti",
|
|
92
|
-
"es": "Correcciones de errores y mejoras",
|
|
93
|
-
"pl": "Poprawki błędów i ulepszenia",
|
|
94
|
-
"uk": "Виправлення помилок та вдосконалення",
|
|
95
|
-
"zh-cn": "错误修复和改进"
|
|
96
|
-
},
|
|
97
|
-
"0.5.2": {
|
|
98
|
-
"en": "Bug fixes and improvements",
|
|
99
|
-
"de": "Fehlerbehebungen und Verbesserungen",
|
|
100
|
-
"ru": "Исправления ошибок и улучшения",
|
|
101
|
-
"pt": "Correções de bugs e melhorias",
|
|
102
|
-
"nl": "Bugfixes en verbeteringen",
|
|
103
|
-
"fr": "Corrections de bugs et améliorations",
|
|
104
|
-
"it": "Correzioni di bug e miglioramenti",
|
|
105
|
-
"es": "Correcciones de errores y mejoras",
|
|
106
|
-
"pl": "Poprawki błędów i ulepszenia",
|
|
107
|
-
"uk": "Виправлення помилок та вдосконалення",
|
|
108
|
-
"zh-cn": "错误修复和改进"
|
|
109
|
-
},
|
|
110
|
-
"0.4.3": {
|
|
111
|
-
"en": "Bug fixes and improvements",
|
|
112
|
-
"de": "Fehlerbehebungen und Verbesserungen",
|
|
113
|
-
"ru": "Исправления ошибок и улучшения",
|
|
114
|
-
"pt": "Correções de bugs e melhorias",
|
|
115
|
-
"nl": "Bugfixes en verbeteringen",
|
|
116
|
-
"fr": "Corrections de bugs et améliorations",
|
|
117
|
-
"it": "Correzioni di bug e miglioramenti",
|
|
118
|
-
"es": "Correcciones de errores y mejoras",
|
|
119
|
-
"pl": "Poprawki błędów i ulepszenia",
|
|
120
|
-
"uk": "Виправлення помилок та вдосконалення",
|
|
121
|
-
"zh-cn": "错误修复和改进"
|
|
122
|
-
},
|
|
123
|
-
"0.3.1": {
|
|
124
|
-
"en": "Initial version",
|
|
125
|
-
"de": "Erste Version",
|
|
126
|
-
"ru": "Начальная версия",
|
|
127
|
-
"pt": "Versão inicial",
|
|
128
|
-
"nl": "Eerste versie",
|
|
129
|
-
"fr": "Version initiale",
|
|
130
|
-
"it": "Versione iniziale",
|
|
131
|
-
"es": "Versión inicial",
|
|
132
|
-
"pl": "Wersja początkowa",
|
|
133
|
-
"uk": "Початкова версія",
|
|
134
|
-
"zh-cn": "初始版本"
|
|
135
|
-
}
|
|
136
97
|
},
|
|
137
98
|
"titleLang": {
|
|
138
99
|
"en": "AC Infinity (USE AT YOUR OWN RISK)",
|