@homebridge-plugins/homebridge-tado 9.2.0 → 9.2.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/CHANGELOG.md +4 -0
- package/config.schema.json +6 -1
- package/package.json +1 -1
- package/src/accessories/heatercooler.js +15 -3
- package/src/tado/tado-config.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# v9.2.1 - 2026-06-06
|
|
4
|
+
- Fix: HeaterCooler temperature limits are no longer overridden by an unset or zero `minValue`/`maxValue` from config (#169)
|
|
5
|
+
- Fix: `accTypeBoiler` is now hidden in the UI when `boilerTempSupport` is enabled, as temperature-controlled hot water devices are always exposed as HeaterCooler (#169)
|
|
6
|
+
|
|
3
7
|
# v9.2.0 - 2026-06-05
|
|
4
8
|
- Fix: Incorrect warning "CoolingThresholdTemperature exceeded maximum of 35" for HOT_WATER zones with `boilerTempSupport: true` (#169)
|
|
5
9
|
- Fix: Config UI: show AC-specific fields for AIR_CONDITIONING zones (#173)
|
package/config.schema.json
CHANGED
|
@@ -682,7 +682,12 @@
|
|
|
682
682
|
},
|
|
683
683
|
"items": [
|
|
684
684
|
"homes[].zones[].boilerTempSupport",
|
|
685
|
-
|
|
685
|
+
{
|
|
686
|
+
"key": "homes[].zones[].accTypeBoiler",
|
|
687
|
+
"condition": {
|
|
688
|
+
"functionBody": "try { return !model.homes[arrayIndices[0]].zones[arrayIndices[1]].boilerTempSupport } catch(e){ return false }"
|
|
689
|
+
}
|
|
690
|
+
}
|
|
686
691
|
]
|
|
687
692
|
},
|
|
688
693
|
{
|
package/package.json
CHANGED
|
@@ -167,9 +167,21 @@ export default class HeaterCoolerAccessory {
|
|
|
167
167
|
? 25
|
|
168
168
|
: 77;
|
|
169
169
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
170
|
+
//only override temperature limits if config value is explicitly and correctly set
|
|
171
|
+
if (
|
|
172
|
+
this.accessory.context.config.minValue != null &&
|
|
173
|
+
this.accessory.context.config.minValue > 0 &&
|
|
174
|
+
this.accessory.context.config.minValue < maxValue
|
|
175
|
+
) {
|
|
176
|
+
minValue = this.accessory.context.config.minValue;
|
|
177
|
+
}
|
|
178
|
+
if (
|
|
179
|
+
this.accessory.context.config.maxValue != null &&
|
|
180
|
+
this.accessory.context.config.maxValue > 0 &&
|
|
181
|
+
this.accessory.context.config.maxValue > minValue
|
|
182
|
+
) {
|
|
183
|
+
maxValue = this.accessory.context.config.maxValue;
|
|
184
|
+
}
|
|
173
185
|
|
|
174
186
|
console.log('Before MINSTEP: ' + this.accessory.context.config.minStep, this.accessory.displayName);
|
|
175
187
|
|
package/src/tado/tado-config.js
CHANGED