Update zwave for upcomming 0.110.0

This commit is contained in:
Pascal Vizeli
2020-05-19 16:29:36 +02:00
parent 3bd89bca24
commit 43b258557a
4 changed files with 11 additions and 6 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 0.2.0
- Update OZW / QTOZW
- Rename `zwave_mqtt` to `ozw`
## 0.1.1
- Fix i386 build

View File

@@ -7,8 +7,8 @@
"aarch64": "homeassistant/aarch64-base:3.11"
},
"args": {
"OZW_VERSION": "6289ebb56eca7182638d41dce19a5c3d70c9045b",
"QTOZW_VERSION": "73842d79b6eda5c532d673b53a3861c46abe8e01",
"OZW_VERSION": "1d7f512f3bb9b304fae25fafaf6d3073956b7210",
"QTOZW_VERSION": "41609866979aa3c8da18f4bfb5ffe989675afd8f",
"QTMQTT_VERSION": "5.12.8",
"QTWEBSOCKETS_VERSION": "5.12.8"
}

View File

@@ -1,6 +1,6 @@
{
"name": "OpenZwave",
"version": "0.1.1",
"version": "0.2.0",
"slug": "zwave",
"description": "Control a ZWave network with Home Assistant",
"arch": ["amd64", "i386", "armhf", "armv7", "aarch64"],
@@ -11,7 +11,7 @@
"stage": "experimental",
"homeassistant": "0.110.0.dev",
"services": ["mqtt:want"],
"discovery": ["zwave_mqtt"],
"discovery": ["ozw"],
"auto_uart": true,
"gpio": true,
"apparmor": false,

View File

@@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bashio
# ==============================================================================
# Send zwave_mqtt discovery information to Home Assistant
# Send ozw discovery information to Home Assistant
# ==============================================================================
declare ha_config
@@ -13,7 +13,7 @@ ha_config=$(\
password $(bashio::jq /data/auth.json ".homeassistant_password") \
)
if bashio::discovery "zwave_mqtt" "${ha_config}" > /dev/null; then
if bashio::discovery "ozw" "${ha_config}" > /dev/null; then
bashio::log.info "Successfully send discovery information to Home Assistant."
else
bashio::log.error "Discovery message to Home Assistant failed!"