v1.3.2.1
[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: theha_themeCSS 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 whensnooze_default_durationwas configured. Root cause:_renderSnoozeButtonhad a separate code path for group slides (alert._isGroup) that always rendered the menu, bypassing thefixedDurationcheck used for individual alerts. Fixed by applying the same logic to the group path: ifsnooze_default_durationis set, the button directly calls_snoozeGroup(alert, duration)with a single tap; the menu is shown only when no default duration is configured.