Skip to content

Commit

Permalink
v2.2.7 (#133)
Browse files Browse the repository at this point in the history
## [2.2.7](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.7) (2024-09-25)

### What's Changes
- Housekeeping and updated dependencies.

**Full Changelog**: v2.2.6...v2.2.7
  • Loading branch information
donavanbecker authored Sep 25, 2024
1 parent 320692c commit 0bf0e12
Show file tree
Hide file tree
Showing 24 changed files with 13,860 additions and 9,416 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.7](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.7) (2024-09-25)

### What's Changes
- Housekeeping and updated dependencies.

**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.6...v2.2.7

## [2.2.6](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.6) (2024-06-23)

### What's Changes
Expand Down
8 changes: 7 additions & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,11 @@
]
}
]
},
"allowInvalidCharacters": {
"title": "Allow Invalid Characters",
"type": "boolean",
"description": "If true, invalid characters will be allowed in the device name."
}
}
}
Expand Down Expand Up @@ -476,7 +481,8 @@
"key": "options.pushRate",
"description": "<em class='primary-text'>Specifies the interval, in seconds, between pushes to the August API.</em>"
},
"options.logging"
"options.logging",
"options.allowInvalidCharacters"
]
}
]
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 0bf0e12

Please sign in to comment.