iobroker.al-ko 0.3.0 → 0.3.1
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 +22 -10
- package/docs/de/README.md +6 -1
- package/docs/en/README.md +6 -1
- package/io-package.json +10 -10
- package/package.json +7 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -51,29 +51,41 @@ Do **not** contact AL-KO customer service regarding this project.
|
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
|
54
|
-
##
|
|
54
|
+
## Changelog
|
|
55
55
|
|
|
56
|
-
###
|
|
56
|
+
### 0.3.1 (2026-03-09)
|
|
57
57
|
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
58
|
+
- Documentation improvements
|
|
59
|
+
- Corrected LICENSE information
|
|
60
|
+
- Updated development dependencies
|
|
61
|
+
- Minor CI / workflow cleanup
|
|
62
|
+
- No functional changes
|
|
63
|
+
|
|
64
|
+
### 0.3.0 (2026-03-09)
|
|
65
|
+
|
|
66
|
+
- Major maintenance release
|
|
67
|
+
- Updated ESLint 9, Prettier 3 and TypeScript tooling
|
|
68
|
+
- Updated development dependencies
|
|
69
|
+
- Improved CI pipeline and adapter structure
|
|
70
|
+
- No functional changes
|
|
63
71
|
|
|
64
|
-
###
|
|
72
|
+
### 0.2.15 (2025-11-02)
|
|
65
73
|
|
|
66
74
|
- Cleaned up admin/jsonConfig structure for adapter-check
|
|
67
75
|
- Added missing `size` attributes
|
|
68
76
|
- Added `.commitinfo` to `.gitignore`
|
|
69
77
|
- No functional changes
|
|
70
78
|
|
|
71
|
-
➡
|
|
72
|
-
|
|
79
|
+
➡ Full changelog here:
|
|
80
|
+
[CHANGELOG.md](./CHANGELOG.md)
|
|
73
81
|
|
|
74
82
|
---
|
|
75
83
|
|
|
76
84
|
## License
|
|
77
85
|
|
|
86
|
+
MIT License
|
|
87
|
+
|
|
88
|
+
Copyright (c) 2026 Hubert Zechner <hubertiob@posteo.at>
|
|
89
|
+
|
|
78
90
|
This project is released under the **MIT License**.
|
|
79
91
|
See the included **LICENSE** file for full details.
|
package/docs/de/README.md
CHANGED
|
@@ -48,7 +48,12 @@ AL-KO bietet **keinen offiziellen Support** hierfür.
|
|
|
48
48
|
|
|
49
49
|
## Änderungen (Auszug)
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### 0.3.1 (2026-03-09)
|
|
52
|
+
|
|
53
|
+
- Verbesserte Dokumentation
|
|
54
|
+
- Lizenzangaben korrigiert
|
|
55
|
+
- Entwicklungsabhängigkeiten aktualisiert
|
|
56
|
+
- Keine funktionalen Änderungen
|
|
52
57
|
|
|
53
58
|
Alle Änderungen siehe vollständigen Changelog:
|
|
54
59
|
➡ [CHANGELOG.md](../../CHANGELOG.md)
|
package/docs/en/README.md
CHANGED
|
@@ -48,7 +48,12 @@ It is a **community-developed project**.
|
|
|
48
48
|
|
|
49
49
|
## Changes (Summary)
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### 0.3.1 (2026-03-09)
|
|
52
|
+
|
|
53
|
+
- Documentation improvements
|
|
54
|
+
- Corrected LICENSE information
|
|
55
|
+
- Updated development dependencies
|
|
56
|
+
- No functional changes
|
|
52
57
|
|
|
53
58
|
See full changelog here:
|
|
54
59
|
➡ [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.1",
|
|
5
5
|
"tier": 3,
|
|
6
6
|
"titleLang": {
|
|
7
7
|
"en": "AL-KO",
|
|
@@ -40,6 +40,14 @@
|
|
|
40
40
|
"de": "docs/de/README.md"
|
|
41
41
|
},
|
|
42
42
|
"news": {
|
|
43
|
+
"0.3.1": {
|
|
44
|
+
"en": "Documentation improvements, corrected license information and updated development dependencies. No functional changes.",
|
|
45
|
+
"de": "Dokumentation verbessert, Lizenzangaben korrigiert und Entwicklungsabhängigkeiten aktualisiert. Keine funktionalen Änderungen."
|
|
46
|
+
},
|
|
47
|
+
"0.3.0": {
|
|
48
|
+
"en": "Major maintenance release. Updated ESLint 9, Prettier 3, TypeScript tooling and development dependencies. Improved adapter structure and CI pipeline. No functional changes.",
|
|
49
|
+
"de": "Größeres Wartungsrelease. Aktualisierung von ESLint 9, Prettier 3, TypeScript-Tooling und Entwicklungsabhängigkeiten. Verbesserte Adapterstruktur und CI-Pipeline. Keine funktionalen Änderungen."
|
|
50
|
+
},
|
|
43
51
|
"0.2.15": {
|
|
44
52
|
"en": "Admin config cleanup for adapter-check: removed $schema, corrected structure, added missing size attributes.",
|
|
45
53
|
"de": "Admin-Konfiguration für adapter-check bereinigt: $schema entfernt, Struktur korrigiert, fehlende size-Attribute ergänzt."
|
|
@@ -51,14 +59,6 @@
|
|
|
51
59
|
"0.2.13": {
|
|
52
60
|
"en": "Fixed JSON syntax error in io-package.json. No functional changes.",
|
|
53
61
|
"de": "JSON-Syntaxfehler in io-package.json behoben. Keine funktionalen Änderungen."
|
|
54
|
-
},
|
|
55
|
-
"0.2.12": {
|
|
56
|
-
"en": "Fixed jsonConfig schema URL, added missing size attributes, increased minimum requirements.",
|
|
57
|
-
"de": "Schema-URL korrigiert, fehlende Size-Attribute ergänzt, Mindestanforderungen erhöht."
|
|
58
|
-
},
|
|
59
|
-
"0.2.11": {
|
|
60
|
-
"en": "Minor code corrections.",
|
|
61
|
-
"de": "Kleine Code-Korrekturen."
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"keywords": ["al-ko", "Robolinho", "mower", "garden", "smart-garden"],
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
],
|
|
82
82
|
"globalDependencies": [
|
|
83
83
|
{
|
|
84
|
-
"admin": ">=7.6.
|
|
84
|
+
"admin": ">=7.6.20"
|
|
85
85
|
}
|
|
86
86
|
]
|
|
87
87
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.al-ko",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
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",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"ws": "^8.19.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@alcalzone/release-script": "^5.
|
|
60
|
-
"@alcalzone/release-script-plugin-iobroker": "^
|
|
61
|
-
"@alcalzone/release-script-plugin-license": "^
|
|
62
|
-
"@alcalzone/release-script-plugin-manual-review": "^
|
|
63
|
-
"@iobroker/adapter-dev": "^1.
|
|
59
|
+
"@alcalzone/release-script": "^5.1.1",
|
|
60
|
+
"@alcalzone/release-script-plugin-iobroker": "^5.1.2",
|
|
61
|
+
"@alcalzone/release-script-plugin-license": "^5.1.1",
|
|
62
|
+
"@alcalzone/release-script-plugin-manual-review": "^5.1.1",
|
|
63
|
+
"@iobroker/adapter-dev": "^1.5.0",
|
|
64
64
|
"@iobroker/eslint-config": "^2.2.0",
|
|
65
|
-
"@iobroker/testing": "^5.
|
|
65
|
+
"@iobroker/testing": "^5.2.2",
|
|
66
66
|
"@tsconfig/node20": "^20.1.8",
|
|
67
67
|
"@types/node": "^25.1.0",
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|