Skip to content

Commit 0bf0e12

Browse files
v2.2.7 (#133)
## [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
1 parent 320692c commit 0bf0e12

24 files changed

+13860
-9416
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## [2.2.7](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.7) (2024-09-25)
6+
7+
### What's Changes
8+
- Housekeeping and updated dependencies.
9+
10+
**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.6...v2.2.7
11+
512
## [2.2.6](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.6) (2024-06-23)
613

714
### What's Changes

config.schema.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,11 @@
394394
]
395395
}
396396
]
397+
},
398+
"allowInvalidCharacters": {
399+
"title": "Allow Invalid Characters",
400+
"type": "boolean",
401+
"description": "If true, invalid characters will be allowed in the device name."
397402
}
398403
}
399404
}
@@ -476,7 +481,8 @@
476481
"key": "options.pushRate",
477482
"description": "<em class='primary-text'>Specifies the interval, in seconds, between pushes to the August API.</em>"
478483
},
479-
"options.logging"
484+
"options.logging",
485+
"options.allowInvalidCharacters"
480486
]
481487
}
482488
]

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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.

docs/assets/highlight.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root {
2+
--light-code-background: #FFFFFF;
3+
--dark-code-background: #1E1E1E;
4+
}
5+
6+
@media (prefers-color-scheme: light) { :root {
7+
--code-background: var(--light-code-background);
8+
} }
9+
10+
@media (prefers-color-scheme: dark) { :root {
11+
--code-background: var(--dark-code-background);
12+
} }
13+
14+
:root[data-theme='light'] {
15+
--code-background: var(--light-code-background);
16+
}
17+
18+
:root[data-theme='dark'] {
19+
--code-background: var(--dark-code-background);
20+
}
21+
22+
pre, code { background: var(--code-background); }

docs/assets/icons.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)