Skip to content

Commit

Permalink
Merge pull request #410 from asantaga/dev
Browse files Browse the repository at this point in the history
v3.4.1
  • Loading branch information
msp1974 authored Dec 11, 2023
2 parents 2da86c0 + 3d0628c commit c800f8d
Show file tree
Hide file tree
Showing 5 changed files with 262 additions and 226 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Wiser Home Assistant Integration v3.4.0beta
# Wiser Home Assistant Integration v3.4.1

[![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)
Expand All @@ -22,6 +22,11 @@ For more information checkout the AMAZING community thread available on

## Change log

- v3.4.1
- Corrected error deleting schedule
- Handle space at end of secret key and prevent error (issue [#409](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/409))
- Updated schedule card to v1.3.2 - fixed some UI bugs, added ability to hide info and assignments via config (issue [#404](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/404))

- v3.4.0beta
- Fixed issue in HA 2023.12 with errors reading hub
- Add PowerTagE support (v2 hub)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiser/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
URL_BASE = "/wiser"
WISER_CARD_FILENAMES = ["wiser-schedule-card.js", "wiser-zigbee-card.js"]

VERSION = "3.4.0"
VERSION = "3.4.1"
WISER_PLATFORMS = [
"climate",
"sensor",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiser/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def __init__(self, hass: HomeAssistant, config_entry: ConfigEntry) -> None:

self.wiserhub = WiserAPI(
host=config_entry.data[CONF_HOST],
secret=config_entry.data[CONF_PASSWORD],
secret=str(config_entry.data[CONF_PASSWORD]).strip(),
session=async_get_clientsession(hass),
extra_config_file=hass.config.config_dir + CUSTOM_DATA_STORE,
enable_automations=self.enable_automations_passive_mode,
Expand Down
473 changes: 252 additions & 221 deletions custom_components/wiser/frontend/wiser-schedule-card.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions custom_components/wiser/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/asantaga/wiserHomeAssistantPlatform/issues",
"requirements": [
"aioWiserHeatAPI==1.5.0"
"aioWiserHeatAPI==1.5.1"
],
"version": "3.4.0",
"version": "3.4.1",
"zeroconf": [
{
"type": "_http._tcp.local.",
Expand Down

0 comments on commit c800f8d

Please sign in to comment.