Skip to content

Commit

Permalink
9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Jul 21, 2023
1 parent d5b5d86 commit 9918654
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to homebridge-meross will be documented in this file.

## BETA
## 9.2.1 (2023-07-21)

### Added

Expand All @@ -14,6 +14,7 @@ All notable changes to homebridge-meross will be documented in this file.

### Fixed

- Leak device status
- Initialisation issue with roller device with location devices

## 9.2.0 (2023-07-18)
Expand Down
2 changes: 2 additions & 0 deletions lib/device/hub-leak.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export default class {
this.service.updateCharacteristic(this.hapChar.LeakDetected, 1);
this.accessory.eveService.addEntry({ status: 1 });
this.cacheLeak = 1;
this.accessory.log(`${platformLang.curLeak} [yes]`);
}
break;
}
Expand All @@ -68,6 +69,7 @@ export default class {
this.service.updateCharacteristic(this.hapChar.LeakDetected, 0);
this.accessory.eveService.addEntry({ status: 0 });
this.cacheLeak = 0;
this.accessory.log(`${platformLang.curLeak} [no]`);
}
break;
}
Expand Down
1 change: 1 addition & 0 deletions lib/utils/lang-en.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default {
curHeat: 'current heating',
curHumi: 'current humidity',
curInUse: 'current in use',
curLeak: 'current leak',
curLightBright: 'current light brightness',
curLightColour: 'current light colour (hs/rgb)',
curLightMode: 'current light mode',
Expand Down

0 comments on commit 9918654

Please sign in to comment.