Skip to content

Commit

Permalink
v3.7.0 (#1008)
Browse files Browse the repository at this point in the history
- Add Platform BLE Scanning
  - Enable by setting `Enable BLE Scanning` setting under Advanced Settings.
  - Will update devices as data is received.
- Fix Bot and Other `On` issues.
- Remove repetitive logging [#1001](#1001), Thanks [@dnicolson](https://github.com/dnicolson)
- Housekeeping and updated dependencies.

**Full Changelog**: v3.6.0...v3.7.0
  • Loading branch information
donavanbecker committed Jul 21, 2024
1 parent 48c5c7d commit 11d4dc4
Show file tree
Hide file tree
Showing 49 changed files with 3,998 additions and 1,464 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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

## [3.7.0](https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v3.7.0) (2024-07-21)

### What's Changed
- Add Platform BLE Scanning
- Enable by setting `Enable BLE Scanning` setting under Advanced Settings.
- Will update devices as data is received.
- Fix Bot and Other `On` issues.
- Remove repetitive logging [#1001](https://github.com/OpenWonderLabs/homebridge-switchbot/pull/1001), Thanks [@dnicolson](https://github.com/dnicolson)
- Housekeeping and updated dependencies.

**Full Changelog**: https://github.com/OpenWonderLabs/homebridge-switchbot/compare/v3.6.0...v3.7.0

## [3.6.0](https://github.com/OpenWonderLabs/homebridge-switchbot/releases/tag/v3.6.0) (2024-07-06)

### What's Changed
Expand Down
11 changes: 11 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@
"Bot"
]
},
{
"title": "Battery Circulator Fan",
"enum": [
"Battery Circulator Fan"
]
},
{
"title": "Ceiling Light",
"enum": [
Expand Down Expand Up @@ -1653,6 +1659,10 @@
},
"uniqueItems": true
},
"BLE": {
"title": "Enable BLE Scanning",
"type": "boolean"
},
"webhookURL": {
"title": "Webhook URL",
"type": "string",
Expand Down Expand Up @@ -1900,6 +1910,7 @@
"expandable": true,
"expanded": false,
"items": [
"options.BLE",
"options.webhookURL",
"options.mqttURL",
"options.mqttOptions",
Expand Down
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
22 changes: 22 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
:root {
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--code-background: var(--dark-code-background);
}

pre, code { background: var(--code-background); }
18 changes: 18 additions & 0 deletions docs/assets/icons.js

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

Loading

0 comments on commit 11d4dc4

Please sign in to comment.