deCONZ 2.5.87 (stable) (#1676)

* deCONZ 2.5.87 (stable)

* Apply suggestions from code review

Co-authored-by: Franck Nijhof <git@frenck.dev>

* add output

* Update build.json

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Pascal Vizeli
2020-11-13 18:21:59 +01:00
committed by GitHub
parent 7aec38b3f0
commit 11dbfb55b5
4 changed files with 12 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 6.5.0
- Bump deCONZ to 2.05.88
## 6.4.1
- Enable autoscale for ingress noVNC

View File

@@ -6,7 +6,9 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install deCONZ dependencies
ARG BUILD_ARCH
RUN apt-get update \
RUN \
set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
iproute2 \
@@ -59,7 +61,9 @@ RUN apt-get update \
# Install deCONZ
ARG DECONZ_VERSION
RUN if [ "${BUILD_ARCH}" = "armhf" ]; \
RUN \
set -x \
&& if [ "${BUILD_ARCH}" = "armhf" ]; \
then \
curl -q -L -o /deconz.deb http://deconz.dresden-elektronik.de/raspbian/stable/deconz-${DECONZ_VERSION}-qt5.deb; \
elif [ "${BUILD_ARCH}" = "aarch64" ]; \

View File

@@ -5,6 +5,6 @@
"armhf": "homeassistant/armhf-base-raspbian:buster"
},
"args": {
"DECONZ_VERSION": "2.05.84"
"DECONZ_VERSION": "2.05.88"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "deCONZ",
"version": "6.4.1",
"version": "6.5.0",
"slug": "deconz",
"description": "Control a Zigbee network with ConBee or RaspBee by Dresden Elektronik",
"arch": ["amd64", "armhf", "aarch64"],