Skip to content

Commit

Permalink
Release 0.21.0
Browse files Browse the repository at this point in the history
Run prettier
Add option to deactivate probing and specify stick manually (#308)
Remove src/manifest.json
  • Loading branch information
tim-hellhake committed May 29, 2021
1 parent fdbd339 commit a1ad734
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
22 changes: 17 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
},
"schema": {
"type": "object",
"required": ["scanChannels", "allowFTDISerial"],
"required": [
"scanChannels",
"allowFTDISerial"
],
"properties": {
"scanChannels": {
"type": "integer",
Expand Down Expand Up @@ -59,11 +62,18 @@
"items": {
"type": "object",
"title": "ZigBee Stick",
"required": ["type", "port"],
"required": [
"type",
"port"
],
"properties": {
"type": {
"type": "string",
"enum": ["xbee", "conbee", "zstack"]
"enum": [
"xbee",
"conbee",
"zstack"
]
},
"port": {
"type": "string"
Expand All @@ -85,7 +95,9 @@
"items": {
"title": "Zigbee2MQTT adapter",
"type": "object",
"required": ["host"],
"required": [
"host"
],
"properties": {
"host": {
"type": "string",
Expand All @@ -108,5 +120,5 @@
}
},
"short_name": "Zigbee",
"version": "0.20.0"
"version": "0.21.0"
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zigbee-adapter",
"version": "0.20.0",
"version": "0.21.0",
"description": "Zigbee device support, via USB dongle or external Zigbee2MQTT instance.",
"author": "WebThingsIO",
"main": "lib/index.js",
Expand Down

0 comments on commit a1ad734

Please sign in to comment.