mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
Wait a bit longer until udev is finish (#1169)
* Update run.sh * Update config.json * Update CHANGELOG.md
This commit is contained in:
@@ -1,19 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## 5.3
|
||||
## 5.3.1
|
||||
|
||||
- Increase wait time for show device
|
||||
|
||||
## 5.3.0
|
||||
|
||||
- Bump deCONZ to 2.05.74
|
||||
|
||||
## 5.2
|
||||
## 5.2.0
|
||||
|
||||
- Bump deCONZ to 2.05.73
|
||||
- Small adjustments to NGINX configuration
|
||||
|
||||
## 5.1
|
||||
## 5.1.0
|
||||
|
||||
- Add LEDVANCE / OSRAM otau firmware downloader, respecting max 10 DL per minute Ratelimits
|
||||
|
||||
## 5.0
|
||||
## 5.0.0
|
||||
|
||||
- Fix additional gateway visible on Phoscon login on Ingress
|
||||
- Fix Phoscon device scanning/probing triggering IP bans
|
||||
@@ -28,122 +32,13 @@
|
||||
_Please note: This release works best with Home Assistant 0.103.4 or newer,
|
||||
that release contains fixes/optimizations for the add-on as well._
|
||||
|
||||
## 4.1
|
||||
## 4.1.0
|
||||
|
||||
- Change internal API port back to 40850, to prevent issue with discovery
|
||||
|
||||
## 4.0
|
||||
## 4.0.0
|
||||
|
||||
- Bump deCONZ to 2.05.72
|
||||
- Add support for Hass.io Ingress
|
||||
- Improve auto discovery handling
|
||||
- Remove support for UPnP
|
||||
|
||||
## 3.9
|
||||
|
||||
- Adds support for enabling UPnP
|
||||
- Improve waiting for udev devices mechanism
|
||||
|
||||
## 3.8
|
||||
|
||||
- Bump deCONZ to 2.05.71
|
||||
|
||||
## 3.7
|
||||
|
||||
- Bump deCONZ to 2.05.70
|
||||
|
||||
## 3.6
|
||||
|
||||
- Bump deCONZ to 2.05.69
|
||||
- Update wiringPi to latest (2.52)
|
||||
|
||||
## 3.5
|
||||
|
||||
- Add support for native aarch64
|
||||
|
||||
## 3.4
|
||||
|
||||
- Cleanup some udev rules
|
||||
- Use new Hass.io API for device reload
|
||||
|
||||
## 3.3
|
||||
|
||||
- Fix relative to absolut device lookup
|
||||
|
||||
## 3.2
|
||||
|
||||
- Bump deCONZ to 2.05.67
|
||||
- Add own udev service
|
||||
- Monitoring only deCONZ process
|
||||
|
||||
## 3.1
|
||||
|
||||
- Improves VNC desktop name
|
||||
- Adds check if VNC port is free to use
|
||||
- Documents firmware upgrade process and caveats
|
||||
|
||||
## 3.0
|
||||
|
||||
- Adds support for accessing deCONZ via VNC
|
||||
- Adds debug output control options
|
||||
|
||||
## 2.7
|
||||
|
||||
- Bump deCONZ to 2.05.66
|
||||
|
||||
## 2.6
|
||||
|
||||
- Adding missing dependencies of deconz
|
||||
- Create otau storage directory on start
|
||||
|
||||
## 2.5
|
||||
|
||||
- Corrects error in installation instructions steps
|
||||
|
||||
## 2.4
|
||||
|
||||
- Bump deCONZ to 2.05.65
|
||||
|
||||
## 2.3
|
||||
|
||||
- Rewrite of README
|
||||
- Fixes add-on URL
|
||||
|
||||
## 2.2
|
||||
|
||||
- Bump deCONZ to 2.05.64
|
||||
|
||||
## 2.1
|
||||
|
||||
- Bump deCONZ to 2.05.63
|
||||
- Remove Ingress support / Don't run well with SSL
|
||||
|
||||
## 2.0
|
||||
|
||||
- Add support for Home Assistant Add-on integration
|
||||
- Add Ingress support
|
||||
|
||||
**WARNING:** This version change the network modus to host network that it works with mobile apps from deCONZ. That mean you need remove the old integration and connect it again. 2min after first Startup, the Add-on provides its own Discovery details to Home Assistant.
|
||||
|
||||
## 1.4
|
||||
|
||||
- Bump deCONZ to 2.05.59
|
||||
- Remove the fake aarch64 version in favor of new arch selector
|
||||
|
||||
## 1.3
|
||||
|
||||
- Bump deCONZ to 2.05.58
|
||||
- Support now Firmware updates over the Phoscon UI
|
||||
|
||||
## 1.2
|
||||
|
||||
- Bump deCONZ to 2.05.57
|
||||
|
||||
## 1.1
|
||||
|
||||
- Bump deCONZ to 2.05.55
|
||||
|
||||
## 1.0
|
||||
|
||||
- Initial release as Home Assistant core Add-on
|
||||
- Bump deCONZ to 2.05.54
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "deCONZ",
|
||||
"version": "5.3",
|
||||
"version": "5.3.1",
|
||||
"slug": "deconz",
|
||||
"description": "Control a Zigbee network with ConBee or RaspBee by Dresden Elektronik",
|
||||
"arch": ["amd64", "armhf", "aarch64"],
|
||||
|
||||
@@ -22,8 +22,8 @@ DECONZ_DEVICE=$(bashio::config 'device')
|
||||
if [[ -c "${DECONZ_DEVICE}" ]]; then
|
||||
bashio::log.debug "Specified device points to a character special file, continuing"
|
||||
else
|
||||
# 60 second timeout to wait for udev to finish processing
|
||||
timeout=60
|
||||
# 180 second timeout to wait for udev to finish processing
|
||||
timeout=180
|
||||
while [[ ! -L "${DECONZ_DEVICE}" ]]; do
|
||||
if [[ "${timeout}" -eq 0 ]]; then
|
||||
bashio::exit.nok "No device ${DECONZ_DEVICE} found!"
|
||||
|
||||
Reference in New Issue
Block a user