homebridge-melcloud-control 4.5.5-beta.5 → 4.5.5-beta.6
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 +9 -0
- package/homebridge-ui/public/index.html +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,15 @@ 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.5.5] - (20.12.2025)
|
|
26
|
+
|
|
27
|
+
## Changes
|
|
28
|
+
|
|
29
|
+
- fix characteristics warning in Thermostat mode if frost protection active
|
|
30
|
+
- config schema updated
|
|
31
|
+
- redme updated
|
|
32
|
+
- cleanup
|
|
33
|
+
|
|
25
34
|
# [4.5.4] - (19.12.2025)
|
|
26
35
|
|
|
27
36
|
## Changes
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
<form id="configForm">
|
|
19
19
|
<div class="text-center">
|
|
20
20
|
<label id="accountName" class="fw-bold" style="font-size: 23px;">Account</label><br>
|
|
21
|
-
<label id="info" class="d-block" style="font-size:
|
|
22
|
-
<label id="info1" class="d-block" style="font-size:
|
|
23
|
-
<label id="info2" class="d-block" style="font-size:
|
|
21
|
+
<label id="info" class="d-block" style="font-size: 15px;"></label>
|
|
22
|
+
<label id="info1" class="d-block" style="font-size: 13px;"></label>
|
|
23
|
+
<label id="info2" class="d-block" style="font-size: 13px;"></label>
|
|
24
24
|
</div>
|
|
25
25
|
|
|
26
26
|
<div class="mb-2">
|
|
@@ -395,10 +395,10 @@
|
|
|
395
395
|
updateInfo('info', 'No changes detected.', 'white');
|
|
396
396
|
} else {
|
|
397
397
|
if (newDevicesCount || newPresetsCount || newSchedulesCount || newScenesCount) {
|
|
398
|
-
updateInfo('info', `Found new ${newDevicesCount ? `devices:` : ''} ${newInMelCloud.ata.length ? `ATA: ${newInMelCloud.ata.length}
|
|
398
|
+
updateInfo('info', `Found new ${newDevicesCount ? `devices:` : ''} ${newInMelCloud.ata.length ? `ATA: ${newInMelCloud.ata.length},` : ''} ${newInMelCloud.atw.length ? `ATW: ${newInMelCloud.atw.length},` : ''} ${newInMelCloud.erv.length ? `ERV: ${newInMelCloud.erv.length},` : ''} ${newPresetsCount ? `presets:` : ''} ${newInMelCloud.ataPresets.length ? `ATA: ${newInMelCloud.ataPresets.length},` : ''} ${newInMelCloud.atwPresets.length ? `ATW: ${newInMelCloud.atwPresets.length}, ` : ''} ${newInMelCloud.ervPresets.length ? `ERV: ${newInMelCloud.ervPresets.length},` : ''} ${newSchedulesCount ? `schedules:` : ''} ${newInMelCloud.ataSchedules.length ? `ATA: ${newInMelCloud.ataSchedules.length},` : ''} ${newInMelCloud.atwSchedules.length ? `ATW: ${newInMelCloud.atwSchedules.length},` : ''} ${newInMelCloud.ervSchedules.length ? `ERV: ${newInMelCloud.ervSchedules.length}, ` : ''} ${newScenesCount ? `scenes:` : ''} ${newInMelCloud.ataScenes.length ? `ATA: ${newInMelCloud.ataScenes.length},` : ''} ${newInMelCloud.atwScenes.length ? `ATW: ${newInMelCloud.atwScenes.length},` : ''} ${newInMelCloud.ervScenes.length ? `ERV: ${newInMelCloud.ervScenes.length}` : ''}.`, 'green');
|
|
399
399
|
}
|
|
400
400
|
if (removedDevicesCount || removedPresetsCount || removedSchedulesCount || removedScenesCount) {
|
|
401
|
-
updateInfo('info1', `Removed old ${removedDevicesCount ? `devices:` : ''} ${removedFromConfigAta.length ? `ATA: ${removedFromConfigAta.length}
|
|
401
|
+
updateInfo('info1', `Removed old ${removedDevicesCount ? `devices:` : ''} ${removedFromConfigAta.length ? `ATA: ${removedFromConfigAta.length},` : ''} ${removedFromConfigAtw.length ? `ATW: ${removedFromConfigAtw.length},` : ''} ${removedFromConfigErv.length ? `ERV: ${removedFromConfigErv.length},` : ''} ${removedPresetsCount ? `presets: ${removedPresetsCount},` : ''} ${removedSchedulesCount ? `schedules: ${removedSchedulesCount},` : ''} ${removedScenesCount ? `scenes: ${removedScenesCount}` : ''}.`, 'orange');
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.5.5-beta.
|
|
4
|
+
"version": "4.5.5-beta.6",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|