Skip to content

Commit

Permalink
plugin config screen issue (undefined methods)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Dec 8, 2024
1 parent daad3d5 commit 99e5c71
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,22 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). In pr
- `MINOR` version when a new device type is added, or when a new feature is added that is backwards-compatible
- `PATCH` version when backwards-compatible bug fixes are implemented

## BETA
## v10.14.0 (2024-12-08)

### Added

- add matter ignore list and config opt
- using an initial (but probably incomplete) list of Matter-enabled models
- please report any missing models or issues via GitHub

### Changed

- try to allow bluetooth on macs

### Fixed

- plugin config screen issue (undefined methods)

## v10.13.0 (2024-12-08)

### Added
Expand Down
8 changes: 4 additions & 4 deletions lib/homebridge-ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h4>Disclaimer</h4>
const introContinue = document.getElementById('introContinue')
introContinue.addEventListener('click', () => {
homebridge.showSpinner()
homebridge.disableSaveButton()
homebridge.disableSaveButton?.()
document.getElementById('pageIntro').style.display = 'none'
document.getElementById('menuWrapper').style.display = 'inline-flex'
showSettings()
Expand All @@ -264,7 +264,7 @@ <h4>Disclaimer</h4>
}
showDevices = async () => {
homebridge.showSpinner()
homebridge.disableSaveButton()
homebridge.disableSaveButton?.()
homebridge.hideSchemaForm()
document.getElementById('menuHome').classList.remove('btn-elegant')
document.getElementById('menuHome').classList.add('btn-primary')
Expand Down Expand Up @@ -391,7 +391,7 @@ <h4>Disclaimer</h4>
}
showSupport = () => {
homebridge.showSpinner()
homebridge.disableSaveButton()
homebridge.disableSaveButton?.()
homebridge.hideSchemaForm()
document.getElementById('menuHome').classList.add('btn-elegant')
document.getElementById('menuHome').classList.remove('btn-primary')
Expand All @@ -405,7 +405,7 @@ <h4>Disclaimer</h4>
}
showSettings = () => {
homebridge.showSpinner()
homebridge.enableSaveButton()
homebridge.enableSaveButton?.()
document.getElementById('menuHome').classList.remove('btn-elegant')
document.getElementById('menuHome').classList.add('btn-primary')
document.getElementById('menuDevices').classList.remove('btn-elegant')
Expand Down

0 comments on commit 99e5c71

Please sign in to comment.