homebridge-melcloud-control 4.8.4-beta.5 → 4.8.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 +10 -0
- package/package.json +2 -2
- package/src/melcloudata.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,16 @@ 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.8.4] - (22.03.2026)
|
|
28
|
+
|
|
29
|
+
## Changes
|
|
30
|
+
|
|
31
|
+
- fix report correct fan mode fter power ON with HK
|
|
32
|
+
- fix wide vane support
|
|
33
|
+
- cleanup payload before send
|
|
34
|
+
- bump dependencies
|
|
35
|
+
- cleanup
|
|
36
|
+
|
|
27
37
|
# [4.8.3] - (17.03.2026)
|
|
28
38
|
|
|
29
39
|
## 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.8.4
|
|
4
|
+
"version": "4.8.4",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"LICENSE"
|
|
32
32
|
],
|
|
33
33
|
"engines": {
|
|
34
|
-
"homebridge": "^1.8.0 || ^2.0.0 || ^2.0.0-beta.
|
|
34
|
+
"homebridge": "^1.8.0 || ^2.0.0 || ^2.0.0-beta.79 || ^2.0.0-alpha.81",
|
|
35
35
|
"node": "^20 || ^22 || ^24 || ^25"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
package/src/melcloudata.js
CHANGED
|
@@ -320,7 +320,7 @@ class MelCloudAta extends EventEmitter {
|
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
//send payload
|
|
323
|
-
if (
|
|
323
|
+
if (this.logDebug) this.emit('debug', `Send data: ${JSON.stringify(payload, null, 2)}`);
|
|
324
324
|
await this.client(path, { method: method, data: payload });
|
|
325
325
|
|
|
326
326
|
//update state
|