Skip to content

Commit

Permalink
Bump pyaarlo revision. (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
twrecked authored Aug 22, 2024
1 parent 3c94623 commit 0c8f5bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ You can use `save_media_to` option to specify a file naming scheme. If you do _A

- `SN`; the device serial number
- `N`; the device name
- `NN`; the device name, lower case with _ replacing spaces
- `Y`; the year of the recording, include century
- `m`; the month of the year as a number (range 01 to 12)
- `d`; the day of the month as a number (range 01 to 31)
Expand Down
2 changes: 2 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
aarlo
0.8.1.5
Bump pyaarlo version
0.8.1.4
Fix IO in event loop issue.
Possible light warning fix.
Expand Down
5 changes: 3 additions & 2 deletions custom_components/aarlo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from .cfg import BlendedCfg, PyaarloCfg


__version__ = "0.8.1.4"
__version__ = "0.8.1.5"

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -366,7 +366,8 @@ async def update_listener(hass: HomeAssistant, entry: ConfigEntry):
return

_LOGGER.debug("reconfiguring...")
cfg = BlendedCfg(hass, entry.data, entry.options)
cfg = BlendedCfg(hass)
await cfg.async_load_and_merge(entry.data, entry.options)
hass.data[COMPONENT_CONFIG] = {
COMPONENT_DOMAIN: cfg.domain_config,
str(Platform.ALARM_CONTROL_PANEL): cfg.alarm_config,
Expand Down
4 changes: 2 additions & 2 deletions custom_components/aarlo/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"issue_tracker": "https://github.com/twrecked/hass-aarlo/issues",
"requirements": [
"unidecode",
"pyaarlo>=0.8.0.7"
"pyaarlo>=0.8.0.9"
],
"version": "0.8.1.4"
"version": "0.8.1.5"
}

0 comments on commit 0c8f5bf

Please sign in to comment.