homebridge-melcloud-control 3.9.3 → 3.9.5
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 +12 -0
- package/package.json +1 -1
- package/src/deviceatw.js +1 -1
- package/src/deviceerv.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
16
|
- do not configure it manually, always using Config UI X
|
|
17
17
|
- required Homebridge v2.0.0 and above
|
|
18
18
|
|
|
19
|
+
## [3.9.5] - (02.09.2025)
|
|
20
|
+
|
|
21
|
+
## Changes
|
|
22
|
+
|
|
23
|
+
- fix ERV start error
|
|
24
|
+
|
|
25
|
+
## [3.9.4] - (02.09.2025)
|
|
26
|
+
|
|
27
|
+
## Changes
|
|
28
|
+
|
|
29
|
+
- fix [#213](https://github.com/grzegorz914/homebridge-melcloud-control/issues/213)
|
|
30
|
+
|
|
19
31
|
## [3.9.0] - (18.08.2025)
|
|
20
32
|
|
|
21
33
|
## Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "3.9.
|
|
4
|
+
"version": "3.9.5",
|
|
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/deviceatw.js
CHANGED
|
@@ -1995,7 +1995,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
1995
1995
|
await this.melCloudAtw.checkState();
|
|
1996
1996
|
|
|
1997
1997
|
//prepare accessory
|
|
1998
|
-
const accessory = await this.prepareAccessory(
|
|
1998
|
+
const accessory = await this.prepareAccessory();
|
|
1999
1999
|
return accessory;
|
|
2000
2000
|
} catch (error) {
|
|
2001
2001
|
throw new Error(`Start error: ${error}`);
|
package/src/deviceerv.js
CHANGED
|
@@ -1260,7 +1260,7 @@ class DeviceErv extends EventEmitter {
|
|
|
1260
1260
|
await this.melCloudErv.checkState();
|
|
1261
1261
|
|
|
1262
1262
|
//prepare accessory
|
|
1263
|
-
const accessory = await this.prepareAccessory(
|
|
1263
|
+
const accessory = await this.prepareAccessory();
|
|
1264
1264
|
return accessory;
|
|
1265
1265
|
} catch (error) {
|
|
1266
1266
|
throw new Error(`Start error: ${error}`);
|