From e383a11bb74aed8a0f642a82c7e4365b50771d97 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 5 May 2018 23:19:56 +0200 Subject: [PATCH 01/24] Pump version to fix --- hassio/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/const.py b/hassio/const.py index b8bf87495..b4bb02385 100644 --- a/hassio/const.py +++ b/hassio/const.py @@ -2,7 +2,7 @@ from pathlib import Path from ipaddress import ip_network -HASSIO_VERSION = '103' +HASSIO_VERSION = '103.1' URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/' 'hassio/{}/version.json') From 7f84073b12b3abc51b5d56bdfd5d6edb4f9094d2 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 5 May 2018 23:29:24 +0200 Subject: [PATCH 02/24] Update Hass.io to version 103.1 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 4bbfc8594..6dffa37b7 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "hassio": "103", + "hassio": "103.1", "homeassistant": "0.68.1", "resinos": "1.3", "resinhup": "0.3", From 4647035b0050ecea5c0331dec8e0ba15bae14409 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 6 May 2018 09:44:58 +0200 Subject: [PATCH 03/24] Bugfix Websession --- hassio/api/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/api/proxy.py b/hassio/api/proxy.py index 89336ce53..a6e32e87b 100644 --- a/hassio/api/proxy.py +++ b/hassio/api/proxy.py @@ -34,7 +34,7 @@ class APIProxy(CoreSysAttributes): try: data = None headers = {} - method = getattr(self._websession_ssl, request.method.lower()) + method = getattr(self.sys_websession_ssl, request.method.lower()) params = request.query or None # read data From 7adb81b350c369daf0d50843c0de48e850fc71a2 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 6 May 2018 09:45:46 +0200 Subject: [PATCH 04/24] Update const.py --- hassio/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/const.py b/hassio/const.py index b4bb02385..2d6b33b27 100644 --- a/hassio/const.py +++ b/hassio/const.py @@ -2,7 +2,7 @@ from pathlib import Path from ipaddress import ip_network -HASSIO_VERSION = '103.1' +HASSIO_VERSION = '103.2' URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/' 'hassio/{}/version.json') From 1fafed5a07d54d6aab450dafb1a649309f94ccc9 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 6 May 2018 09:52:55 +0200 Subject: [PATCH 05/24] Update Home Assistant and Hass.io --- version.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.json b/version.json index 6dffa37b7..bc8a55c27 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { - "hassio": "103.1", - "homeassistant": "0.68.1", + "hassio": "103.2", + "homeassistant": "0.69.0b0", "resinos": "1.3", "resinhup": "0.3", "generic": "0.3", From ac437f809a15e584e2238f6df98b555a8f6f76a2 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 7 May 2018 23:53:54 +0200 Subject: [PATCH 06/24] Update Home Assistant 0.69.0b2 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index bc8a55c27..77f634528 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "hassio": "103.2", - "homeassistant": "0.69.0b0", + "homeassistant": "0.69.0b2", "resinos": "1.3", "resinhup": "0.3", "generic": "0.3", From cddd859f564f0b29e364281c3f4aaddbdc6f3592 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 8 May 2018 14:27:17 +0200 Subject: [PATCH 07/24] :speaker: Improves of audio devices handling (#463) --- hassio/misc/hardware.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hassio/misc/hardware.py b/hassio/misc/hardware.py index 62e045223..fdfca042d 100644 --- a/hassio/misc/hardware.py +++ b/hassio/misc/hardware.py @@ -63,6 +63,10 @@ class Hardware: @property def audio_devices(self): """Return all available audio interfaces.""" + if not ASOUND_CARDS.exists(): + _LOGGER.info("No audio devices found") + return {} + try: with ASOUND_CARDS.open('r') as cards_file: cards = cards_file.read() From 3f598bafc041abee119d5bbfa1acacd20cb885ee Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 9 May 2018 11:06:19 +0200 Subject: [PATCH 08/24] Bugfix panel loading (#464) --- hassio/api/panel/hassio-app.html | 4 ++-- hassio/api/panel/hassio-app.html.gz | Bin 121997 -> 122030 bytes hassio/api/panel/index.html | 4 +--- hassio/api/panel/index.html.gz | Bin 488 -> 477 bytes home-assistant-polymer | 2 +- 5 files changed, 4 insertions(+), 6 deletions(-) diff --git a/hassio/api/panel/hassio-app.html b/hassio/api/panel/hassio-app.html index 09f945df5..c9715289f 100644 --- a/hassio/api/panel/hassio-app.html +++ b/hassio/api/panel/hassio-app.html @@ -1,4 +1,4 @@ -