iobroker.al-ko 0.3.3 → 0.3.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/README.md +3 -5
- package/admin/i18n/de/translations.json +1 -3
- package/admin/i18n/en/translations.json +1 -3
- package/admin/i18n/es/translations.json +1 -3
- package/admin/i18n/fr/translations.json +1 -3
- package/admin/i18n/it/translations.json +1 -3
- package/admin/i18n/nl/translations.json +1 -3
- package/admin/i18n/pl/translations.json +1 -3
- package/admin/i18n/pt/translations.json +1 -3
- package/admin/i18n/ru/translations.json +1 -3
- package/admin/i18n/uk/translations.json +1 -3
- package/admin/i18n/zh-cn/translations.json +1 -3
- package/admin/jsonConfig.json +26 -6
- package/docs/de/README.md +5 -7
- package/docs/en/README.md +3 -5
- package/io-package.json +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -53,12 +53,10 @@ Do **not** contact AL-KO customer service regarding this project.
|
|
|
53
53
|
|
|
54
54
|
## Changelog
|
|
55
55
|
|
|
56
|
-
### 0.3.
|
|
56
|
+
### 0.3.4 (2026-03-20)
|
|
57
57
|
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
- Updated Dependabot and workflow configuration
|
|
61
|
-
- Updated development dependencies
|
|
58
|
+
- Fix responsive layout in jsonConfig (xs/sm/md/lg/xl)
|
|
59
|
+
- Remove example i18n entries (option1/option2)
|
|
62
60
|
|
|
63
61
|
➡ Full changelog here:
|
|
64
62
|
[CHANGELOG.md](./CHANGELOG.md)
|
package/admin/jsonConfig.json
CHANGED
|
@@ -18,22 +18,38 @@
|
|
|
18
18
|
"type": "text",
|
|
19
19
|
"label": { "en": "Username", "de": "Benutzername" },
|
|
20
20
|
"placeholder": "Enter your AL-KO account username",
|
|
21
|
-
"
|
|
21
|
+
"xs": 12,
|
|
22
|
+
"sm": 6,
|
|
23
|
+
"md": 6,
|
|
24
|
+
"lg": 4,
|
|
25
|
+
"xl": 4
|
|
22
26
|
},
|
|
23
27
|
"password": {
|
|
24
28
|
"type": "password",
|
|
25
29
|
"label": { "en": "Password", "de": "Passwort" },
|
|
26
|
-
"
|
|
30
|
+
"xs": 12,
|
|
31
|
+
"sm": 6,
|
|
32
|
+
"md": 6,
|
|
33
|
+
"lg": 4,
|
|
34
|
+
"xl": 4
|
|
27
35
|
},
|
|
28
36
|
"clientId": {
|
|
29
37
|
"type": "text",
|
|
30
38
|
"label": { "en": "Client ID", "de": "Client-ID" },
|
|
31
|
-
"
|
|
39
|
+
"xs": 12,
|
|
40
|
+
"sm": 6,
|
|
41
|
+
"md": 6,
|
|
42
|
+
"lg": 4,
|
|
43
|
+
"xl": 4
|
|
32
44
|
},
|
|
33
45
|
"clientSecret": {
|
|
34
46
|
"type": "password",
|
|
35
47
|
"label": { "en": "Client Secret", "de": "Client-Secret" },
|
|
36
|
-
"
|
|
48
|
+
"xs": 12,
|
|
49
|
+
"sm": 6,
|
|
50
|
+
"md": 6,
|
|
51
|
+
"lg": 4,
|
|
52
|
+
"xl": 4
|
|
37
53
|
},
|
|
38
54
|
"wsDebug": {
|
|
39
55
|
"type": "checkbox",
|
|
@@ -42,7 +58,11 @@
|
|
|
42
58
|
"de": "WebSocket-Nachrichten protokollieren"
|
|
43
59
|
},
|
|
44
60
|
"default": false,
|
|
45
|
-
"
|
|
61
|
+
"xs": 12,
|
|
62
|
+
"sm": 6,
|
|
63
|
+
"md": 6,
|
|
64
|
+
"lg": 4,
|
|
65
|
+
"xl": 4
|
|
46
66
|
}
|
|
47
67
|
}
|
|
48
|
-
}
|
|
68
|
+
}
|
package/docs/de/README.md
CHANGED
|
@@ -48,6 +48,11 @@ AL-KO bietet **keinen offiziellen Support** hierfür.
|
|
|
48
48
|
|
|
49
49
|
## Änderungen (Auszug)
|
|
50
50
|
|
|
51
|
+
### 0.3.4 (2026-03-20)
|
|
52
|
+
|
|
53
|
+
- Responsives Layout in der jsonConfig korrigiert (xs/sm/md/lg/xl)
|
|
54
|
+
- Beispielhafte i18n-Einträge (option1/option2) entfernt
|
|
55
|
+
|
|
51
56
|
### 0.3.3 (2026-03-13)
|
|
52
57
|
|
|
53
58
|
- WebSocket-Verarbeitung verbessert
|
|
@@ -63,13 +68,6 @@ AL-KO bietet **keinen offiziellen Support** hierfür.
|
|
|
63
68
|
- API-Fehlerlogging für Push-Requests verbessert
|
|
64
69
|
- Logging für WebSocket-Close-Code und Reason ergänzt
|
|
65
70
|
|
|
66
|
-
### 0.3.1 (2026-03-09)
|
|
67
|
-
|
|
68
|
-
- Verbesserte Dokumentation
|
|
69
|
-
- Lizenzangaben korrigiert
|
|
70
|
-
- Entwicklungsabhängigkeiten aktualisiert
|
|
71
|
-
- Keine funktionalen Änderungen
|
|
72
|
-
|
|
73
71
|
Alle Änderungen siehe vollständigen Changelog:
|
|
74
72
|
➡ [CHANGELOG.md](../../CHANGELOG.md)
|
|
75
73
|
|
package/docs/en/README.md
CHANGED
|
@@ -48,12 +48,10 @@ It is a **community-developed project**.
|
|
|
48
48
|
|
|
49
49
|
## Changes (Summary)
|
|
50
50
|
|
|
51
|
-
### 0.3.
|
|
51
|
+
### 0.3.4 (2026-03-20)
|
|
52
52
|
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
- Updated Dependabot and workflow configuration
|
|
56
|
-
- Updated development dependencies
|
|
53
|
+
- Fix responsive layout in jsonConfig (xs/sm/md/lg/xl)
|
|
54
|
+
- Remove example i18n entries (option1/option2)
|
|
57
55
|
|
|
58
56
|
See full changelog here:
|
|
59
57
|
➡ [CHANGELOG.md](../../CHANGELOG.md)
|
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "al-ko",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.4",
|
|
5
5
|
"tier": 3,
|
|
6
6
|
"titleLang": {
|
|
7
7
|
"en": "AL-KO",
|
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
"de": "docs/de/README.md"
|
|
41
41
|
},
|
|
42
42
|
"news": {
|
|
43
|
+
"0.3.4": {
|
|
44
|
+
"en": "Fix jsonConfig responsive layout and remove example i18n entries",
|
|
45
|
+
"de": "jsonConfig responsive Layout korrigiert und Beispiel-i18n-Einträge entfernt"
|
|
46
|
+
},
|
|
43
47
|
"0.3.3": {
|
|
44
48
|
"en": "Improved WebSocket handling and message processing, updated repository workflows, and updated development dependencies.",
|
|
45
49
|
"de": "WebSocket-Handling und Nachrichtenverarbeitung verbessert, Repository-Workflows aktualisiert und Entwicklungsabhängigkeiten aktualisiert."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.al-ko",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Adapter for communication with AL-KO smart garden devices (Robolinho, mowing windows, operationState, etc.)",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Hubert Zechner",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@iobroker/testing": "^5.2.2",
|
|
66
66
|
"@tsconfig/node20": "^20.1.8",
|
|
67
67
|
"@types/node": "^25.5.0",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.57.
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
69
69
|
"@typescript-eslint/parser": "^8.57.0",
|
|
70
70
|
"prettier": "^3.8.1",
|
|
71
71
|
"proxyquire": "^2.1.3"
|