diff --git a/CHANGELOG.md b/CHANGELOG.md index f470482..9fddb86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.14 - 2026-06-16 +- Onboarding-Vorschläge laden im Dashboard nachgelagert, damit Status, + Aktor-Auswahl und bestehende Geräte nicht auf Automation-Discovery warten. + ## 0.7.13 - 2026-06-16 - Diagnose-/Schutzsensoren wie Überhitzung und Überlast werden nicht mehr nur wegen gleicher Strom-/Monitoring-Bereiche automatisch als Lichtkontext diff --git a/addon/config.yaml b/addon/config.yaml index 7f35013..6c78708 100644 --- a/addon/config.yaml +++ b/addon/config.yaml @@ -1,5 +1,5 @@ name: SillyHome Next -version: "0.7.13" +version: "0.7.14" slug: sillyhome_next description: Lernt automatisch aus deinem Verhalten und steuert freigegebene Aktoren url: http://192.168.6.31:3000/pino/sillyhome-next diff --git a/app/main.py b/app/main.py index 5790b53..a2d5d31 100644 --- a/app/main.py +++ b/app/main.py @@ -102,7 +102,7 @@ async def lifespan(app: FastAPI) -> AsyncIterator[None]: app = FastAPI( title="SillyHome Next API", description="Lokales Smart-Home-Intelligenzsystem für Home Assistant.", - version="0.7.13", + version="0.7.14", lifespan=lifespan, ) app.state.settings = load_settings() diff --git a/app/static/index.html b/app/static/index.html index 7b3a2a4..a1bd6f1 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -305,11 +305,8 @@ async function loadOverview() { status.innerHTML = `

${escapeHtml(error.message)}

`; chips.innerHTML = ""; } - await Promise.all([ - loadActuatorDiscovery(), - loadActuatorSuggestions(), - loadConfiguredActuators(), - ]); + await Promise.all([loadActuatorDiscovery(), loadConfiguredActuators()]); + void loadActuatorSuggestions(); } async function loadActuatorDiscovery() { diff --git a/pyproject.toml b/pyproject.toml index d3ddf5c..67ccf6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sillyhome-next" -version = "0.7.13" +version = "0.7.14" description = "Lokales Smart-Home-Intelligenzsystem für Home Assistant" requires-python = ">=3.11" dependencies = [