Skip to content

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
## [2.2.3](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.3) (2024-06-22)

### What's Changes
- Fix some config issues.

**Full Changelog**: v2.2.2...v2.2.3
  • Loading branch information
donavanbecker committed Jun 23, 2024
1 parent 0b03dea commit 70ae5da
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)

## [2.2.3](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.3) (2024-06-22)

### What's Changes
- Fix some config issues.

**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.2...v2.2.3

## [2.2.2](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.2) (2024-06-22)

### What's Changes
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 @@
{
"displayName": "August",
"name": "homebridge-august",
"version": "2.2.2",
"version": "2.2.3",
"description": "The August plugin allows you to access your August & Yale device(s) from HomeKit.",
"author": {
"name": "donavanbecker",
Expand Down
6 changes: 3 additions & 3 deletions src/devices/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ export abstract class deviceBase {
deviceConfig['refreshRate'] = device.refreshRate;
}
if (device.overrideHomeKitEnabled === true) {
deviceConfig['refreshRate'] = device.refreshRate;
deviceConfig['overrideHomeKitEnabled'] = device.overrideHomeKitEnabled;
}
if (device.updateRate !== undefined) {
deviceConfig['refreshRate'] = device.updateRate;
deviceConfig['updateRate'] = device.updateRate;
}
if (device.pushRate !== undefined) {
deviceConfig['refreshRate'] = device.pushRate;
deviceConfig['pushRate'] = device.pushRate;
}
if (device.lock) {
if (device.lock.hide_contactsensor === true) {
Expand Down

0 comments on commit 70ae5da

Please sign in to comment.