homebridge-melcloud-control 4.3.7-beta.5 → 4.3.7-beta.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 +8 -0
- package/package.json +1 -1
- package/src/deviceata.js +0 -1
- package/src/deviceatw.js +0 -1
- package/src/deviceerv.js +0 -1
- package/src/melcloudhome.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,14 @@ 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.3.5] - (xx.11.2025)
|
|
26
|
+
|
|
27
|
+
## Changes
|
|
28
|
+
|
|
29
|
+
- stability and performance improvements
|
|
30
|
+
- config schema updated
|
|
31
|
+
- cleanup
|
|
32
|
+
|
|
25
33
|
# [4.3.5] - (24.11.2025)
|
|
26
34
|
|
|
27
35
|
## 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.3.7-beta.
|
|
4
|
+
"version": "4.3.7-beta.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/deviceata.js
CHANGED
|
@@ -1883,7 +1883,6 @@ class DeviceAta extends EventEmitter {
|
|
|
1883
1883
|
await this.melCloudAta.checkState(this.melcloudDevicesList);
|
|
1884
1884
|
|
|
1885
1885
|
//prepare accessory
|
|
1886
|
-
await new Promise(r => setTimeout(r, 5000));
|
|
1887
1886
|
const accessory = await this.prepareAccessory();
|
|
1888
1887
|
return accessory;
|
|
1889
1888
|
} catch (error) {
|
package/src/deviceatw.js
CHANGED
|
@@ -2310,7 +2310,6 @@ class DeviceAtw extends EventEmitter {
|
|
|
2310
2310
|
await this.melCloudAtw.checkState(this.melcloudDevicesList);
|
|
2311
2311
|
|
|
2312
2312
|
//prepare accessory
|
|
2313
|
-
await new Promise(r => setTimeout(r, 1000));
|
|
2314
2313
|
const accessory = await this.prepareAccessory();
|
|
2315
2314
|
return accessory;
|
|
2316
2315
|
} catch (error) {
|
package/src/deviceerv.js
CHANGED
|
@@ -1584,7 +1584,6 @@ class DeviceErv extends EventEmitter {
|
|
|
1584
1584
|
await this.melCloudErv.checkState(this.melcloudDevicesList);
|
|
1585
1585
|
|
|
1586
1586
|
//prepare accessory
|
|
1587
|
-
await new Promise(r => setTimeout(r, 1000));
|
|
1588
1587
|
const accessory = await this.prepareAccessory();
|
|
1589
1588
|
return accessory;
|
|
1590
1589
|
} catch (error) {
|
package/src/melcloudhome.js
CHANGED
|
@@ -252,7 +252,7 @@ class MelCloudHome extends EventEmitter {
|
|
|
252
252
|
})
|
|
253
253
|
.on('message', (message) => {
|
|
254
254
|
const parsedMessage = JSON.parse(message);
|
|
255
|
-
if (this.logDebug) this.emit('debug', `Incoming message: ${JSON.stringify(parsedMessage, null, 2)}`);
|
|
255
|
+
if (!this.logDebug) this.emit('debug', `Incoming message: ${JSON.stringify(parsedMessage, null, 2)}`);
|
|
256
256
|
if (parsedMessage.message === 'Forbidden') return;
|
|
257
257
|
|
|
258
258
|
this.emit('webSocket', parsedMessage);
|