Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.0 #70

Merged
merged 9 commits into from
Aug 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## [Version 1.2.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.0) (2023-08-19)

## What's Changes
- Fixed debugging issue, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/donavanbecker/homebridge-august/pull/69)
- Reduce August API calls, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/donavanbecker/homebridge-august/pull/69)
- Fix 'Locking...' and 'Unlocking...' issue, Thanks [@dacarson](https://github.com/dacarson) [#66](https://github.com/donavanbecker/homebridge-august/pull/66)
- Default Refresh Rate has been updated to limit the rate at which we refresh from August APIs.
- This should fix any Status 429 Errors. [#55](https://github.com/donavanbecker/homebridge-august/issues/55)

**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.1.1...v1.2.0

## [Version 1.1.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.1.1) (2023-04-07)

## What's Changes
Expand Down
20 changes: 13 additions & 7 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,13 @@
"logging": {
"title": "Device Logging Override Setting",
"type": "string",
"required": true,
"default": "",
"oneOf": [
{
"title": "Default Logging",
"enum": [""]
},
{
"title": "Standard Logging",
"enum": ["standard"]
Expand Down Expand Up @@ -169,7 +175,13 @@
"logging": {
"title": "Logging Setting",
"type": "string",
"required": true,
"default": "",
"oneOf": [
{
"title": "Default Logging",
"enum": [""]
},
{
"title": "Standard Logging",
"enum": ["standard"]
Expand All @@ -195,13 +207,7 @@
"title": "August Account Info",
"expandable": true,
"expanded": false,
"items": [
"credentials.augustId",
"credentials.password",
"credentials.validateCode",
"credentials.installId",
"credentials.isValidated"
]
"items": ["credentials.augustId", "credentials.password", "credentials.validateCode", "credentials.installId", "credentials.isValidated"]
},
{
"type": "fieldset",
Expand Down
2 changes: 1 addition & 1 deletion homebridge-ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<p class="lead text-center">To get started link your August Account:</p>
<ol>
<li class="mb-3">Input your August <strong>E-mail/Phone Number</strong> into the August Account Info.</li>
<li class="mb-3">Restart Homebrdige to receive an August <strong>Validate Code</strong>.</li>
<li class="mb-3">Restart Homebridge to receive an August <strong>Validate Code</strong>.</li>
<li class="mb-3">Input your <strong>Validate Code</strong> into the August Account Info.</li>
<li class="mb-3">Finally <strong>Restart</strong> Homebridge..</li>
</ol>
Expand Down
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"watch": ["src"],
"ext": "ts",
"ignore": [],
"exec": "tsc && sudo hb-service restart",
"exec": "DEBUG= tsc && homebridge -T -D -P -I -U ~/.homebridge-dev ..",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
Expand Down
Loading