@homebridge-plugins/homebridge-tado 9.1.2 → 9.2.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/CHANGELOG.md +5 -0
- package/README.md +3 -3
- package/config.schema.json +5 -5
- package/package.json +3 -3
- package/src/helper/handler.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# v9.2.0 - 2026-06-05
|
|
4
|
+
- Fix: Incorrect warning "CoolingThresholdTemperature exceeded maximum of 35" for HOT_WATER zones with `boilerTempSupport: true` (#169)
|
|
5
|
+
- Fix: Config UI: show AC-specific fields for AIR_CONDITIONING zones (#173)
|
|
6
|
+
- Update dependencies
|
|
7
|
+
|
|
3
8
|
# v9.1.2 - 2026-05-23
|
|
4
9
|
- Update dependencies due to vulnerability
|
|
5
10
|
|
package/README.md
CHANGED
|
@@ -187,7 +187,7 @@ You can also adjust the minimum temperature step ``"minStep"``, minimum temperat
|
|
|
187
187
|
"modeTimer": 30,
|
|
188
188
|
"minValue": 5,
|
|
189
189
|
"maxValue": 25,
|
|
190
|
-
"minStep":
|
|
190
|
+
"minStep": 0.5,
|
|
191
191
|
"easyMode": false,
|
|
192
192
|
"noBattery": false
|
|
193
193
|
}
|
|
@@ -265,7 +265,7 @@ You can also adjust the minimum temperature step `"minStep"`, minimum temperatur
|
|
|
265
265
|
"autoOffDelay": false,
|
|
266
266
|
"separateTemperature": false,
|
|
267
267
|
"separateHumidity": true,
|
|
268
|
-
"minStep":
|
|
268
|
+
"minStep": 1,
|
|
269
269
|
"noBattery": false
|
|
270
270
|
}
|
|
271
271
|
...
|
|
@@ -308,7 +308,7 @@ You can also adjust the minimum temperature step ``"minStep"``, minimum temperat
|
|
|
308
308
|
"modeTimer": 30,
|
|
309
309
|
"minValue": 30,
|
|
310
310
|
"maxValue": 65,
|
|
311
|
-
"minStep":
|
|
311
|
+
"minStep": 1,
|
|
312
312
|
"separateTemperature": true,
|
|
313
313
|
"boilerTempSupport": false,
|
|
314
314
|
"accTypeBoiler": "SWITCH"
|
package/config.schema.json
CHANGED
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
"type": "boolean",
|
|
379
379
|
"description": "If enabled, the humidity sensor will be shown as extra accessory.",
|
|
380
380
|
"condition": {
|
|
381
|
-
"functionBody": "try { return model.homes[arrayIndices[0]].zones[arrayIndices[1]].type
|
|
381
|
+
"functionBody": "try { return ['HEATING','AIR_CONDITIONING'].includes(model.homes[arrayIndices[0]].zones[arrayIndices[1]].type) } catch(e){ return false }"
|
|
382
382
|
}
|
|
383
383
|
},
|
|
384
384
|
"minStep": {
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
"title": "Simple Target Mode",
|
|
442
442
|
"type": "boolean",
|
|
443
443
|
"condition": {
|
|
444
|
-
"functionBody": "try { return model.homes[arrayIndices[0]].zones[arrayIndices[1]].type
|
|
444
|
+
"functionBody": "try { return ['HEATING','AIR_CONDITIONING'].includes(model.homes[arrayIndices[0]].zones[arrayIndices[1]].type) } catch(e){ return false }"
|
|
445
445
|
},
|
|
446
446
|
"description": "If enabled, only 'ON | OFF' target modes are visible for the thermostat."
|
|
447
447
|
},
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
"title": "No Battery",
|
|
450
450
|
"type": "boolean",
|
|
451
451
|
"condition": {
|
|
452
|
-
"functionBody": "try { return model.homes[arrayIndices[0]].zones[arrayIndices[1]].type
|
|
452
|
+
"functionBody": "try { return ['HEATING','AIR_CONDITIONING'].includes(model.homes[arrayIndices[0]].zones[arrayIndices[1]].type) } catch(e){ return false }"
|
|
453
453
|
},
|
|
454
454
|
"description": "If enabled, the battery indicator will be removed from Apple Home."
|
|
455
455
|
},
|
|
@@ -692,7 +692,7 @@
|
|
|
692
692
|
"expanded": false,
|
|
693
693
|
"type": "section",
|
|
694
694
|
"condition": {
|
|
695
|
-
"functionBody": "try { return model.homes[arrayIndices[0]].zones[arrayIndices[1]].type
|
|
695
|
+
"functionBody": "try { return ['HEATING','AIR_CONDITIONING'].includes(model.homes[arrayIndices[0]].zones[arrayIndices[1]].type) } catch(e){ return false }"
|
|
696
696
|
},
|
|
697
697
|
"items": [
|
|
698
698
|
"homes[].zones[].openWindowSensor",
|
|
@@ -717,7 +717,7 @@
|
|
|
717
717
|
"expanded": false,
|
|
718
718
|
"type": "section",
|
|
719
719
|
"condition": {
|
|
720
|
-
"functionBody": "try { return model.homes[arrayIndices[0]].zones[arrayIndices[1]].type
|
|
720
|
+
"functionBody": "try { return ['HEATING','AIR_CONDITIONING'].includes(model.homes[arrayIndices[0]].zones[arrayIndices[1]].type) } catch(e){ return false }"
|
|
721
721
|
},
|
|
722
722
|
"items": [
|
|
723
723
|
"homes[].zones[].delaySwitch",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homebridge-plugins/homebridge-tado",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"description": "Homebridge plugin for controlling tado° devices.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"homebridge": "^1.6.0||^2.0.0-beta.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@homebridge/plugin-ui-utils": "^2.2.
|
|
36
|
+
"@homebridge/plugin-ui-utils": "^2.2.4",
|
|
37
37
|
"fakegato-history": "^0.6.7",
|
|
38
38
|
"form-data": "^4.0.5",
|
|
39
39
|
"fs-extra": "^11.3.5",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"moment": "^2.30.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"eslint": "^10.4.
|
|
44
|
+
"eslint": "^10.4.1",
|
|
45
45
|
"@eslint/js": "^10.0.1",
|
|
46
46
|
"globals": "^17.6.0",
|
|
47
47
|
"prettier": "^3.8.3"
|
package/src/helper/handler.js
CHANGED
|
@@ -1196,7 +1196,9 @@ export default (api, accessories, config, tado, telegram) => {
|
|
|
1196
1196
|
} else {
|
|
1197
1197
|
// Non-AC zones (like boiler/hot water)
|
|
1198
1198
|
service.getCharacteristic(characteristicTargetTempHeating).updateValue(targetTemp);
|
|
1199
|
-
service.
|
|
1199
|
+
if (service.testCharacteristic(characteristicTargetTempCooling)) {
|
|
1200
|
+
service.getCharacteristic(characteristicTargetTempCooling).updateValue(targetTemp);
|
|
1201
|
+
}
|
|
1200
1202
|
}
|
|
1201
1203
|
}
|
|
1202
1204
|
|