Skip to content

Commit

Permalink
v1.3.0 (#77)
Browse files Browse the repository at this point in the history
## [Version 1.3.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.1) (2023-10-31)

## What's Changes
- Add support for Yale Home with countryCode, Thanks [@hufftheweevil](https://github.com/hufftheweevil)
- Housekeeping and updated dependencies.)

**Full Changelog**: v1.2.1...v1.3.0
  • Loading branch information
donavanbecker authored Nov 1, 2023
1 parent 1cfb937 commit 1462c9c
Show file tree
Hide file tree
Showing 9 changed files with 718 additions and 818 deletions.
9 changes: 0 additions & 9 deletions .prettierrc

This file was deleted.

4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand All @@ -23,6 +23,6 @@
}
],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "vscode.json-language-features"
}
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [Version 1.3.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.1) (2023-10-31)

## What's Changes
- Add support for Yale Home with countryCode, Thanks [@hufftheweevil](https://github.com/hufftheweevil)
- Housekeeping and updated dependencies.)

**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.2.1...v1.3.0

## [Version 1.2.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.1) (2023-08-27)

## What's Changes
Expand Down
75 changes: 62 additions & 13 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,19 @@
"type": "password"
}
},
"contryCode": {
"type": "string",
"title": "Country Code",
"default": "US"
},
"apiKey": {
"type": "string",
"title": "apiKey"
},
"pnSubKey": {
"type": "string",
"title": "pnSubKey"
},
"installId": {
"title": "Install ID",
"type": "string"
Expand All @@ -51,7 +64,13 @@
"default": "Keep your tokens a secret!"
}
},
"required": ["augustId", "password", "validateCode", "notice"]
"required": [
"augustId",
"password",
"countryCode",
"validateCode",
"notice"
]
},
"options": {
"type": "object",
Expand Down Expand Up @@ -135,27 +154,39 @@
"oneOf": [
{
"title": "Default Logging",
"enum": [""]
"enum": [
""
]
},
{
"title": "Standard Logging",
"enum": ["standard"]
"enum": [
"standard"
]
},
{
"title": "No Logging",
"enum": ["none"]
"enum": [
"none"
]
},
{
"title": "Debug Logging",
"enum": ["debug"]
"enum": [
"debug"
]
}
],
"condition": {
"functionBody": "return (model.options && model.options.devices && model.options.devices[arrayIndices].lockId && !model.options.devices[arrayIndices].hide_device);"
}
}
},
"required": ["lockId", "configLockName", "logging"]
"required": [
"lockId",
"configLockName",
"logging"
]
},
"uniqueItems": true
},
Expand All @@ -180,34 +211,52 @@
"oneOf": [
{
"title": "Default Logging",
"enum": [""]
"enum": [
""
]
},
{
"title": "Standard Logging",
"enum": ["standard"]
"enum": [
"standard"
]
},
{
"title": "No Logging",
"enum": ["none"]
"enum": [
"none"
]
},
{
"title": "Debug Logging",
"enum": ["debug"]
"enum": [
"debug"
]
}
]
}
}
}
},
"required": ["name", "credentials"]
"required": [
"name",
"credentials"
]
},
"layout": [
{
"type": "fieldset",
"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",
"credentials.contryCode"
]
},
{
"type": "fieldset",
Expand Down Expand Up @@ -263,4 +312,4 @@
]
}
]
}
}
Loading

0 comments on commit 1462c9c

Please sign in to comment.