Skip to content

Commit

Permalink
Make UPDATEABLE optional due to homegear support
Browse files Browse the repository at this point in the history
  • Loading branch information
SukramJ committed Sep 29, 2024
1 parent 9724d0a commit 281389c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 2024.9.13 (2024-09-29)

- Make UPDATEABLE optional due to homegear support

# Version 2024.9.12 (2024-09-26)

- Add config option for listen ip address and port
Expand Down
2 changes: 1 addition & 1 deletion hahomematic/platforms/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self, central: hmcu.CentralUnit, interface_id: str, device_address:
self._device_updated_callbacks: Final[list[Callable]] = []
self._firmware_update_callbacks: Final[list[Callable]] = []
self._model: Final = self._description["TYPE"]
self._is_updatable: Final = self._description["UPDATABLE"]
self._is_updatable: Final = self._description.get("UPDATABLE", False)
self._rx_modes: Final = get_rx_modes(mode=self._description.get("RX_MODE", 0))
self._sub_model: Final = self._description.get("SUBTYPE")
self._ignore_for_custom_entity: Final[bool] = (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "hahomematic"
version = "2024.9.12"
version = "2024.9.13"
license = {text = "MIT License"}
description = "Homematic interface for Home Assistant running on Python 3."
readme = "README.md"
Expand Down

0 comments on commit 281389c

Please sign in to comment.