From 5f4efa01cb2e35b084ab28aecdedf1f766b5a8bc Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Mon, 4 Nov 2024 17:07:06 +0000 Subject: [PATCH 1/4] fix typo in dimable light color mode - issue #518 --- custom_components/wiser/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/wiser/light.py b/custom_components/wiser/light.py index 7a38899..e4e3ebd 100644 --- a/custom_components/wiser/light.py +++ b/custom_components/wiser/light.py @@ -198,7 +198,7 @@ def supported_color_modes(self): @property def color_mode(self): """Return color mode.""" - return {ColorMode.BRIGHTNESS} + return ColorMode.BRIGHTNESS @property def brightness(self): From 7de925606ca13cfd4b44a09f13ad5556385e2b99 Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Mon, 4 Nov 2024 17:07:20 +0000 Subject: [PATCH 2/4] bump api to v1.5.18 --- custom_components/wiser/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/wiser/manifest.json b/custom_components/wiser/manifest.json index 445d22a..c25f291 100755 --- a/custom_components/wiser/manifest.json +++ b/custom_components/wiser/manifest.json @@ -16,7 +16,7 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/asantaga/wiserHomeAssistantPlatform/issues", "requirements": [ - "aioWiserHeatAPI==1.5.17" + "aioWiserHeatAPI==1.5.18" ], "version": "3.4.10", "zeroconf": [ From 6810dc5b1856f78c5f13cf252b313f1192149721 Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Mon, 4 Nov 2024 17:10:11 +0000 Subject: [PATCH 3/4] v3.4.11 --- README.md | 6 +++++- custom_components/wiser/const.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34552b9..d4df499 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Wiser Home Assistant Integration v3.4.10 +# Wiser Home Assistant Integration v3.4.11 [![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg?style=for-the-badge)](https://github.com/hacs/integration) [![downloads](https://shields.io/github/downloads/asantaga/wiserHomeAssistantPlatform/latest/total?style=for-the-badge)](https://github.com/asantaga/wiserHomeAssistantPlatform) @@ -29,6 +29,10 @@ For more information checkout the AMAZING community thread available on ## Change log +- v3.4.11 + - Bump api to v1.5.18 to reduce Payload not completed errors + - Fix typo in dimable light color mode - issue #518 + - v3.4.10 - Fixed error loading sensors - issue #513 diff --git a/custom_components/wiser/const.py b/custom_components/wiser/const.py index 23bf4a6..769221f 100755 --- a/custom_components/wiser/const.py +++ b/custom_components/wiser/const.py @@ -6,7 +6,7 @@ """ -VERSION = "3.4.10" +VERSION = "3.4.11" DOMAIN = "wiser" DATA_WISER_CONFIG = "wiser_config" URL_BASE = "/wiser" From 7723194ddd7e808042ee64ddcf710a33bcddbfa3 Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Mon, 4 Nov 2024 17:10:21 +0000 Subject: [PATCH 4/4] min HA version to 2024.9 --- hacs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacs.json b/hacs.json index fe6d10c..fbcb638 100644 --- a/hacs.json +++ b/hacs.json @@ -1,6 +1,6 @@ { "name": "Drayton Wiser Integration for Home Assistant", - "homeassistant": "2024.2", + "homeassistant": "2024.9", "render_readme": true, "zip_release": true, "filename": "wiser.zip"