homebridge-melcloud-control 4.8.3-beta.0 → 4.8.3

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
@@ -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.3] - (17.03.2026)
28
+
29
+ ## Changes
30
+
31
+ - fix fan mode control and display
32
+ - fix account disable
33
+ - bump dependencies
34
+ - redme update
35
+ - cleanup
36
+
27
37
  # [4.8.0] - (23.02.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.3-beta.0",
4
+ "version": "4.8.3",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -313,7 +313,7 @@ class MelCloudAta extends EventEmitter {
313
313
  }
314
314
 
315
315
  //send payload
316
- if (!this.logDebug) this.emit('debug', `Send data: ${JSON.stringify(payload, null, 2)}`);
316
+ if (this.logDebug) this.emit('debug', `Send data: ${JSON.stringify(payload, null, 2)}`);
317
317
  await this.client(path, { method: method, data: payload });
318
318
  return true;
319
319
  default: