From 66b24ece4831170c07222d3b2bae3df88ad77b89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Bachmann?= Date: Sun, 18 Jan 2026 15:52:01 +0000 Subject: [PATCH] 0.6.3 --- custom_components/bahmcloud_store/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/custom_components/bahmcloud_store/__init__.py b/custom_components/bahmcloud_store/__init__.py index 2d2ebc2..00dcd98 100644 --- a/custom_components/bahmcloud_store/__init__.py +++ b/custom_components/bahmcloud_store/__init__.py @@ -36,6 +36,7 @@ async def async_setup(hass: HomeAssistant, config: dict) -> bool: BCSApiView, BCSReadmeView, BCSVersionsView, + BCSRepoDetailView, BCSCustomRepoView, BCSInstallView, BCSUpdateView, @@ -49,6 +50,7 @@ async def async_setup(hass: HomeAssistant, config: dict) -> bool: hass.http.register_view(BCSApiView(core)) hass.http.register_view(BCSReadmeView(core)) hass.http.register_view(BCSVersionsView(core)) + hass.http.register_view(BCSRepoDetailView(core)) hass.http.register_view(BCSCustomRepoView(core)) hass.http.register_view(BCSInstallView(core)) hass.http.register_view(BCSUpdateView(core)) @@ -62,7 +64,7 @@ async def async_setup(hass: HomeAssistant, config: dict) -> bool: frontend_url_path="bahmcloud-store", webcomponent_name="bahmcloud-store-panel", # IMPORTANT: bump v to avoid caching old JS - module_url="/api/bahmcloud_store_static/panel.js?v=105", + module_url="/api/bahmcloud_store_static/panel.js?v=106", sidebar_title="Bahmcloud Store", sidebar_icon="mdi:store", require_admin=True,