diff --git a/changelog.md b/changelog.md index 91581fcd..fbd84fef 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ - Add paramset_key to entity_key - Switch typing of paramset_key from str to ParamsetKey +- Mark only level as relevant entity for DALI # Version 2024.8.13 (2024-08-25) diff --git a/hahomematic/platforms/custom/light.py b/hahomematic/platforms/custom/light.py index f67d4dc3..f725278e 100644 --- a/hahomematic/platforms/custom/light.py +++ b/hahomematic/platforms/custom/light.py @@ -638,7 +638,7 @@ def hs_color(self) -> tuple[float, float] | None: @property def _relevant_entities(self) -> tuple[hmge.GenericEntity, ...]: """Returns the list of relevant entities. To be overridden by subclasses.""" - return self._e_hue, self._e_level, self._e_saturation, self._e_color_temperature_kelvin + return (self._e_level,) @value_property def effects(self) -> tuple[str, ...] | None: diff --git a/pyproject.toml b/pyproject.toml index 0de88596..8cad67e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hahomematic" -version = "2024.8.13" +version = "2024.8.14" license = {text = "MIT License"} description = "Homematic interface for Home Assistant running on Python 3." readme = "README.md"