homebridge-myplace 2.4.1 → 2.4.2
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 +2 -2
- package/MyPlace.sh +4 -4
- package/RUNNING_CHANGELOG.md +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
|
|
2
2
|
|
|
3
|
-
##### v2.4.1 (
|
|
4
|
-
##### (1)
|
|
3
|
+
##### v2.4.1 (12-04-2026)
|
|
4
|
+
##### (1) Bug fix - fixed a bug where the timer failed to getValue.
|
package/MyPlace.sh
CHANGED
|
@@ -1235,20 +1235,20 @@ if [ "$io" = "Get" ]; then
|
|
|
1235
1235
|
echo 0
|
|
1236
1236
|
exit 0
|
|
1237
1237
|
fi
|
|
1238
|
-
if [[ "$countDownToOn" != "0" && "$airconState" =
|
|
1238
|
+
if [[ "$countDownToOn" != "0" && "$airconState" = "on" ]]; then
|
|
1239
1239
|
setAirConUsingIteration "http://$IP:$PORT/setAircon?json={$ac:{info:{countDownToOn:0}}}"
|
|
1240
1240
|
echo 0
|
|
1241
1241
|
exit 0
|
|
1242
1242
|
fi
|
|
1243
|
-
if [[ "$countDownToOff" != "0" && "$airconState" =
|
|
1243
|
+
if [[ "$countDownToOff" != "0" && "$airconState" = "on" ]]; then
|
|
1244
1244
|
echo 1
|
|
1245
1245
|
exit 0
|
|
1246
1246
|
fi
|
|
1247
|
-
if [[ "$countDownToOn" != "0" && "$airconState" =
|
|
1247
|
+
if [[ "$countDownToOn" != "0" && "$airconState" = "off" ]]; then
|
|
1248
1248
|
echo 1
|
|
1249
1249
|
exit 0
|
|
1250
1250
|
fi
|
|
1251
|
-
if [[ "$countDownToOff" != "0" && "$airconState" =
|
|
1251
|
+
if [[ "$countDownToOff" != "0" && "$airconState" = "off" ]]; then
|
|
1252
1252
|
setAirConUsingIteration "http://$IP:$PORT/setAircon?json={$ac:{info:{countDownToOff:0}}}"
|
|
1253
1253
|
echo 0
|
|
1254
1254
|
exit 0
|
package/RUNNING_CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
|
|
2
2
|
|
|
3
|
+
##### v2.4.1 (12-04-2026)
|
|
4
|
+
##### (1) Bug fix - fixed a bug where the timer failed to getValue.
|
|
5
|
+
|
|
3
6
|
##### v2.4.1 (09-04-2026)
|
|
4
7
|
##### (1) Removed depreciated old "userid" dependency.
|
|
5
8
|
|