@homebridge-plugins/homebridge-tado 8.7.2 → 8.7.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v8.7.4 - 2025-12-01
|
|
4
|
+
- Fix: Color of re-sync button in config UI (#187)
|
|
5
|
+
- Update dependencies
|
|
6
|
+
|
|
7
|
+
## v8.7.3 - 2025-11-15
|
|
8
|
+
- Update dependencies due to vulnerability
|
|
9
|
+
|
|
3
10
|
## v8.7.2 - 2025-11-08
|
|
4
11
|
- Add notice about tado X compatibility to documentation (#179)
|
|
5
12
|
- Use consistent spelling for tado and Apple Home across the entire plugin
|
package/README.md
CHANGED
|
@@ -75,7 +75,7 @@ _(In the section below you can find more information about the functions.)_
|
|
|
75
75
|
|
|
76
76
|
## Non Config Ui X User?
|
|
77
77
|
|
|
78
|
-
The plugin can also work without config ui x or a custom ui. If you want the config.json auto-fill feature, you have to put the following part in your config.json. This will generate a ready to use config.json with all options disabled except thermostats. After the first start,
|
|
78
|
+
The plugin can also work without config ui x or a custom ui. If you want the config.json auto-fill feature, you have to put the following part in your config.json. This will generate a ready to use config.json with all options disabled except thermostats. After the first start, this user will get ``"reconfigure": false``. If you want to refresh a home, just enable ``"reconfigure"`` for the user and restart homebridge. If you want to add an another home, add the user credentials (username) to the array. The Plugin can handle multiple accounts.
|
|
79
79
|
|
|
80
80
|
**Note:**
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homebridge-plugins/homebridge-tado",
|
|
3
|
-
"version": "8.7.
|
|
3
|
+
"version": "8.7.4",
|
|
4
4
|
"description": "Homebridge plugin for controlling tado° devices.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"homebridge": "^1.6.0||^2.0.0-beta.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@homebridge/plugin-ui-utils": "^2.1.
|
|
35
|
+
"@homebridge/plugin-ui-utils": "^2.1.2",
|
|
36
36
|
"fakegato-history": "^0.6.7",
|
|
37
|
-
"form-data": "^4.0.
|
|
37
|
+
"form-data": "^4.0.5",
|
|
38
38
|
"fs-extra": "^11.3.2",
|
|
39
|
-
"got": "^14.6.
|
|
39
|
+
"got": "^14.6.5",
|
|
40
40
|
"moment": "^2.30.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"eslint-plugin-import": "^2.32.0",
|
|
50
50
|
"eslint-plugin-prettier": "^5.5.4",
|
|
51
51
|
"globals": "^16.5.0",
|
|
52
|
-
"prettier": "^3.
|
|
52
|
+
"prettier": "^3.7.3"
|
|
53
53
|
}
|
|
54
54
|
}
|