diff --git a/CHANGELOG.md b/CHANGELOG.md index cb15449..a5219b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.11 - 2026-02-13 +- Move translations into the integration folder so UI labels render. +- Downgrade missing subentry support log to debug. + ## 0.0.10 - 2026-02-13 - Add translations for options flow menu labels. diff --git a/README.md b/README.md index 03d5b98..1d714aa 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,6 @@ Each group address has `invert incoming` and `invert outgoing` toggles to flip K - Advanced DPT mapping options and inversion settings. ## Versioning and Releases -- Current version: 0.0.10 +- Current version: 0.0.11 - `CHANGELOG.md` lists versions with the newest entries at the top. - Release creation is manual and only done when explicitly requested. diff --git a/custom_components/ha_knx_bridge/config_flow.py b/custom_components/ha_knx_bridge/config_flow.py index 11657d6..3273876 100644 --- a/custom_components/ha_knx_bridge/config_flow.py +++ b/custom_components/ha_knx_bridge/config_flow.py @@ -70,7 +70,7 @@ class HAKnxBridgeConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): def async_get_supported_subentry_types(config_entry): subentry_type = _get_subentry_type() if subentry_type is None: - _LOGGER.warning( + _LOGGER.debug( "Config subentries are not supported in this Home Assistant version" ) return {} diff --git a/custom_components/ha_knx_bridge/manifest.json b/custom_components/ha_knx_bridge/manifest.json index a203a42..02768ab 100644 --- a/custom_components/ha_knx_bridge/manifest.json +++ b/custom_components/ha_knx_bridge/manifest.json @@ -1,7 +1,7 @@ { "domain": "ha_knx_bridge", "name": "HA KNX Bridge", - "version": "0.0.10", + "version": "0.0.11", "config_flow": true, "documentation": "https://github.com/bahmcloud/HA-KNX-Bridge", "issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues", diff --git a/translations/de.json b/custom_components/ha_knx_bridge/translations/de.json similarity index 100% rename from translations/de.json rename to custom_components/ha_knx_bridge/translations/de.json diff --git a/translations/en.json b/custom_components/ha_knx_bridge/translations/en.json similarity index 100% rename from translations/en.json rename to custom_components/ha_knx_bridge/translations/en.json