Skip to content

Commit

Permalink
v5.0.1 (#258)
Browse files Browse the repository at this point in the history
## [Version 5.0.1](v5.0.0....4.0.1) (2020-03-19)

### Changes

- Fixes an issue with `config.schema.json` where it wouldn't save changes to `refreshRate`.
- Added the ability to enter a custom value for `garageDoorOpeningTime`.
- Updated dependencies.
  • Loading branch information
donavanbecker authored Mar 19, 2021
1 parent 16d61a3 commit 13a7122
Show file tree
Hide file tree
Showing 5 changed files with 138 additions and 154 deletions.
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 5.0.1](https://github.com/donavanbecker/homebridge-meross/compare/v5.0.0....4.0.1) (2020-03-19)

### Changes

- Fixes an issue with `config.schema.json` where it wouldn't save changes to `refreshRate`.
- Added the ability to enter a custom value for `garageDoorOpeningTime`.
- Updated dependencies.

## [Version 5.0.0](https://github.com/donavanbecker/homebridge-meross/compare/v4.0.0....5.0.0) (2021-03-14)

### Breaking Changes
Expand Down
67 changes: 18 additions & 49 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,65 +229,34 @@
},
"garageDoorOpeningTime": {
"title": "Garage Door Opening Time",
"description": "Only for MSG-100 Garage Door Opener, choose the proper time duration for your garage door opener. This parameter will confirm the status of your garage door. Most common is 20 seconds, but different garage door openers may take different time duration to open or close garage door.",
"description": "<em class='primary-text'>In Seconds</em><h6>Only for MSG-100 Garage Door Opener, choose the proper time duration for your garage door opener. This parameter will confirm the status of your garage door. Most common is 20 seconds, but different garage door openers may take different time duration to open or close garage door.</h6>",
"type": "number",
"placeholder": "10",
"required": false,
"oneOf": [
{
"title": "10 seconds",
"enum": [
10
]
},
{
"title": "15 seconds",
"enum": [
15
]
},
{
"title": "20 seconds",
"enum": [
20
]
},
{
"title": "25 seconds",
"enum": [
25
]
},
{
"title": "30 seconds",
"enum": [
30
]
},
{
"title": "35 seconds",
"enum": [
35
]
},
{
"title": "40 seconds",
"enum": [
40
]
}
]
"typeahead": {
"source": [
10,
15,
20,
30,
35,
40
]
}
}
}
}
},
"refreshToken": {
"title": "Refresh Token",
"type": "string",
"required": true
"refreshRate": {
"title": "Refresh Rate",
"type": "number",
"required": false,
"description": "Indicates the number of seconds between polls to Meross Device."
},
"pushRate": {
"title": "Push Rate",
"type": "number",
"required": false,
"description": "Indicates the number of seconds between pushes to Meross Device."
}
},
Expand Down
Loading

0 comments on commit 13a7122

Please sign in to comment.