Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwi-cam authored Sep 30, 2024
2 parents 26ecd0d + 846d43c commit fb02f22
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [4.4.19 - 2024-09-30]
### Fixed
- refreshCharacteristic and value() were not updating the UI. Rebuilt to use updateValue method. (#733)
- Replaced switch's use of refreshCharacteristicUI to update the UI (#725)
- refreshCharacteristic and value() were not updating the UI. Rebuilt to use updateValue method. (#733 and #725)
### Added
- updated package to show Homebridge 2.0 support (#730)

Expand Down
1 change: 0 additions & 1 deletion accessories/aircon.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,6 @@ class AirConAccessory extends BroadlinkRMAccessory {

this.updateTemperatureUI();
if (!config.isUnitTest) {setInterval(()=>{this.getCurrentTemperature(this.updateTemperatureUI.bind(this))}, config.temperatureUpdateFrequency * 1000)}
//if (!config.isUnitTest) {setInterval(this.updateTemperatureUI.bind(this), config.temperatureUpdateFrequency * 1000)}
}

onTemperature (temperature,humidity) {
Expand Down
2 changes: 1 addition & 1 deletion accessories/humidifier-dehumidifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class HumidifierDehumidifierAccessory extends FanAccessory {
device.checkHumidity();

this.updateHumidityUI();
if (!config.isUnitTest && !config.noHumidity) {setInterval(this.updateHumidityUI.bind(this), config.humidityUpdateFrequency * 1000)}
if (!config.isUnitTest && !config.noHumidity) {setInterval(()=>{this.getCurrentHumidity(this.updateHumidityUI.bind(this))}, config.humidityUpdateFrequency * 1000)}
}

onHumidity (temperature,humidity) {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-broadlink-rm-pro",
"displayName": "Homebridge Broadlink RM Pro",
"version": "4.4.19-beta.4",
"version": "4.4.19",
"description": "Broadlink RM plugin (including the mini and pro) for homebridge with AC Pro and TV features",
"license": "ISC",
"scripts": {
Expand Down

0 comments on commit fb02f22

Please sign in to comment.