From 3768be55ff607bc4118bdd18f9fbc370ec0921fe Mon Sep 17 00:00:00 2001 From: Wendelin <12148533+wendevlin@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:51:25 +0100 Subject: [PATCH 1/5] Fix landingpage, supervisor release permission (#23223) --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 59d085a2ae..edbd85c50f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -86,6 +86,8 @@ jobs: name: Release landing-page frontend if: github.event.release.prerelease == false runs-on: ubuntu-latest + permissions: + contents: write # Required to upload release assets steps: - name: Checkout the repository uses: actions/checkout@v4.2.2 @@ -113,6 +115,8 @@ jobs: name: Release supervisor frontend if: github.event.release.prerelease == false runs-on: ubuntu-latest + permissions: + contents: write # Required to upload release assets steps: - name: Checkout the repository uses: actions/checkout@v4.2.2 From 8b25fe88a46ff6d34a24bb6cad6465cbefa00884 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 10 Dec 2024 12:33:21 +0100 Subject: [PATCH 2/5] Use list item for integration quality scale (#23236) --- .../ha-config-integration-page.ts | 63 ++++++++++--------- 1 file changed, 34 insertions(+), 29 deletions(-) diff --git a/src/panels/config/integrations/ha-config-integration-page.ts b/src/panels/config/integrations/ha-config-integration-page.ts index daad09dece..ab75fc915a 100644 --- a/src/panels/config/integrations/ha-config-integration-page.ts +++ b/src/panels/config/integrations/ha-config-integration-page.ts @@ -339,34 +339,6 @@ class HaConfigIntegrationPage extends SubscribeMixin(LitElement) { ${this._manifest?.version != null ? html`
${this._manifest.version}
` : nothing} - ${this._manifest?.quality_scale && - Object.keys(QUALITY_SCALE_MAP).includes( - this._manifest.quality_scale - ) - ? html` -
- - - ${this.hass.localize( - QUALITY_SCALE_MAP[this._manifest.quality_scale] - .translationKey - )} - -
- ` - : nothing} ${this._manifest?.is_built_in === false ? html`
+ ${this._manifest?.quality_scale && + Object.keys(QUALITY_SCALE_MAP).includes( + this._manifest.quality_scale + ) + ? html` + + + + ${this.hass.localize( + QUALITY_SCALE_MAP[this._manifest.quality_scale] + .translationKey + )} + + + + ` + : nothing} ${devices.length > 0 ? html` Date: Thu, 12 Dec 2024 17:38:53 +0100 Subject: [PATCH 3/5] Add missing translations to voice wizard (#23278) --- src/translations/en.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/translations/en.json b/src/translations/en.json index 5676049328..5602399e3a 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -2871,7 +2871,11 @@ "cloud": { "description": "Ideal if you don't have a powerful system at home." }, - "local": { "title": "", "description": "", "setup": "" } + "local": { + "title": "Do-it-yourself", + "description": "Install add-ons or containers to run it on your own system. Powerful hardware is needed for fast responses.", + "setup": "Set up" + } }, "cloud": { "title": "The power of Home Assistant Cloud", From 3d78a7821a33d47b5e9e720cb305bef302c4916d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 12 Dec 2024 11:41:11 -0500 Subject: [PATCH 4/5] Improve piper audio generation (#23281) * Improve piper audio generation * update logic --------- Co-authored-by: Bram Kragten --- .../voice-assistant-setup-step-pipeline.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-pipeline.ts b/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-pipeline.ts index e75e4260cf..c8cb672388 100644 --- a/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-pipeline.ts +++ b/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-pipeline.ts @@ -57,10 +57,10 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement { }, 600); setTimeout(() => { this._showThird = true; - }, 3000); + }, 2000); setTimeout(() => { this._showFourth = true; - }, 8000); + }, 3000); } protected override render() { @@ -123,7 +123,7 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement {
${this._showThird ? html`
- 3 + 2 ${this.hass.localize( "ui.panel.config.voice_assistants.satellite_wizard.pipeline.seconds" )} @@ -136,7 +136,7 @@ export class HaVoiceAssistantSetupStepPipeline extends LitElement { : nothing} ${this._showFourth ? html`
- 5 + 1 ${this.hass.localize( "ui.panel.config.voice_assistants.satellite_wizard.pipeline.seconds" )} From f8dfdcb090ed3982df3adaa17c4a9fef7467f490 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 12 Dec 2024 17:43:43 +0100 Subject: [PATCH 5/5] Bumped version to 20241127.8 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bcfcbba5ee..27949672ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "home-assistant-frontend" -version = "20241127.7" +version = "20241127.8" license = {text = "Apache-2.0"} description = "The Home Assistant frontend" readme = "README.md"