homebridge-melcloud-control 4.2.5-beta.24 → 4.2.5-beta.26

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
@@ -22,6 +22,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
22
 
23
23
  - Do not use Homebridge UI > v5.5.0 because of break config.json
24
24
 
25
+ # [4.2.5] - (16.11.2025)
26
+
27
+ ## Changes
28
+
29
+ - fix device control stop working after some time
30
+ - stability and performance improvements
31
+ - config schema updated
32
+ - readme updated
33
+ - cleanup
34
+
25
35
  ## [4.2.3] - (15.11.2025)
26
36
 
27
37
  ## 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.2.5-beta.24",
4
+ "version": "4.2.5-beta.26",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -257,6 +257,7 @@ class MelCloudAta extends EventEmitter {
257
257
  headers: this.headers,
258
258
  data: payload
259
259
  });
260
+
260
261
  this.updateData(deviceData);
261
262
  return true;
262
263
  default:
@@ -269,11 +270,11 @@ class MelCloudAta extends EventEmitter {
269
270
  }
270
271
 
271
272
  updateData(deviceData) {
272
- this.lock = true;
273
+ this.locks = true;
273
274
  this.emit('deviceState', deviceData);
274
275
 
275
276
  setTimeout(() => {
276
- this.lock = false
277
+ this.locks = false
277
278
  }, 5000);
278
279
  }
279
280
  };
@@ -246,11 +246,11 @@ class MelCloudAtw extends EventEmitter {
246
246
  }
247
247
 
248
248
  updateData(deviceData) {
249
- this.lock = true;
249
+ this.locks = true;
250
250
  this.emit('deviceState', deviceData);
251
251
 
252
252
  setTimeout(() => {
253
- this.lock = false
253
+ this.locks = false
254
254
  }, 5000);
255
255
  }
256
256
  };
@@ -253,11 +253,11 @@ class MelCloudErv extends EventEmitter {
253
253
  }
254
254
 
255
255
  updateData(deviceData) {
256
- this.lock = true;
256
+ this.locks = true;
257
257
  this.emit('deviceState', deviceData);
258
258
 
259
259
  setTimeout(() => {
260
- this.lock = false
260
+ this.locks = false
261
261
  }, 5000);
262
262
  }
263
263
  };