homebridge-melcloud-control 4.10.6 → 4.10.7
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 +9 -0
- package/package.json +1 -1
- package/src/constants.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
24
|
- For plugin < v4.6.0 use Homebridge UI <= v5.5.0
|
|
25
25
|
- For plugin >= v4.6.0 use Homebridge UI >= v5.13.0
|
|
26
26
|
|
|
27
|
+
## [4.10.7] - (11.05.2026)
|
|
28
|
+
|
|
29
|
+
### Changes
|
|
30
|
+
|
|
31
|
+
- fix WebSocket 404 error crashing child bridge: checkDevicesListWithRetry now treats HTTP 404/5xx as retryable, ImpulseGenerator callback wrapped in try/catch to prevent unhandled rejection
|
|
32
|
+
- fix ERV SetTemperature commands sent Power-only effectiveFlags (Ventilation.EffectiveFlags.SetTemperature was undefined, now 16)
|
|
33
|
+
- fix ERV NightPurgeMode command sent Power-only effectiveFlags (Ventilation.EffectiveFlags.NightPurgeMode was undefined, now 32)
|
|
34
|
+
- fix ATW preset apply sent Power-only effectiveFlags (HeatPump.EffectiveFlags.Presets was undefined, now covers all preset payload fields)
|
|
35
|
+
|
|
27
36
|
## [4.10.5] - (08.05.2026)
|
|
28
37
|
|
|
29
38
|
### Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.10.
|
|
4
|
+
"version": "4.10.7",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
package/src/constants.js
CHANGED
|
@@ -165,6 +165,7 @@ export const HeatPump = {
|
|
|
165
165
|
SetHeatFlowTemperatureZone2: 281474976710656,
|
|
166
166
|
SetCoolFlowTemperatureZone1: 281474976710656,
|
|
167
167
|
SetCoolFlowTemperatureZone2: 281474976710656,
|
|
168
|
+
Presets: 281517926449852,
|
|
168
169
|
All: 281483566710825
|
|
169
170
|
}
|
|
170
171
|
};
|
|
@@ -200,6 +201,8 @@ export const Ventilation = {
|
|
|
200
201
|
OperationMode: 2,
|
|
201
202
|
VentilationMode: 4,
|
|
202
203
|
SetFanSpeed: 8,
|
|
204
|
+
SetTemperature: 16,
|
|
205
|
+
NightPurgeMode: 32,
|
|
203
206
|
Prohibit: 64,
|
|
204
207
|
HolidayMode: 131072,
|
|
205
208
|
All: 281483566710825
|