Skip to content

v1.3.2.1

Choose a tag to compare

@djdevil djdevil released this 02 May 22:07
4b6f8c8

[1.3.2.1] - 2026-05-03

Fixed

  • Music player cover art invisible with ha_theme: true (#119) — the v1.3.2 fix restored the art in HA's default theme but broke under the "Adapt to HA theme" option. Root cause: the ha_theme CSS block contains a blanket [class$="-bg"] { opacity: 0.25 !important } rule intended to dim decorative backgrounds; it also matched .mu-art-bg (the blurred album art layer), dropping it to 25% opacity. Additionally, the generic .at-fold-wrapper > div { background: var(--card-background-color) !important } rule overwrote the dark base color of the music player. Fixed by adding :not(.mu-art-bg) to the opacity rule and a specific .atc-ha-theme .at-music--player { background: #0c0a14 !important } override so the player retains its dark background regardless of the active HA theme.

  • Grouped alert snooze ignores snooze_default_duration — clicking 💤 on a group slide always opened the duration picker menu even when snooze_default_duration was configured. Root cause: _renderSnoozeButton had a separate code path for group slides (alert._isGroup) that always rendered the menu, bypassing the fixedDuration check used for individual alerts. Fixed by applying the same logic to the group path: if snooze_default_duration is set, the button directly calls _snoozeGroup(alert, duration) with a single tap; the menu is shown only when no default duration is configured.