Skip to content

v0.6.0

Choose a tag to compare

@mkshb mkshb released this 18 May 23:00
355e498

What's Changed

Two new features and a small layout tweak that goes with them.

New: priority card mode

A dedicated card mode for managing the PV-surplus priority of all loadpoints in one place. No more digging into each loadpoint to adjust its priority slider.

  • Drag-and-drop ranking: one row per loadpoint, ordered top → highest priority
  • Drag the ⋮⋮ handle on any row to reorder. Rows whose target value differs from the current entity state highlight in amber and show the old value next to the new one
  • Apply writes the new priorities via number.set_value. Values are assigned contiguously: top = N-1, bottom = 0
  • Reset discards unapplied changes
  • Optimistic update: after Apply, the new state is shown immediately. No flash of stale state while Home Assistant catches up
  • Respects the loadpoints config filter; loadpoints without a priority entity are shown disabled

Pick the mode in the visual editor (Mode → Priority) or via YAML:

type: custom:evcc-card
mode: priority

New: card-level text size / zoom

For users who find the card text too small, a new size option scales the entire card in three explicit steps:

Setting Zoom Notes
(unset) auto (responsive) unchanged default — container-based scaling 1.0× / 1.15× / 1.30× depending on card width
small 1.00× current text size, always
medium 1.15× smallest texts reach Home Assistant's standard body size (~14px)
large 1.30× same step again. Clearly larger

Setting size explicitly overrides the automatic responsive scaling, so the result is predictable on every dashboard width. Available as a new dropdown in the visual editor ("Text size") and via YAML:

type: custom:evcc-card
mode: loadpoint
size: medium

Fix: battery mode layout at larger sizes

With the new size: medium (and on narrower dashboards in general) the battery mode's side-by-side battery graphic + info column wrapped awkwardly. The state-of-charge details (level, percent, kWh, power) now sit below the battery graphic instead of beside it. The graphic itself is unchanged.

Full Changelog: v0.5.22...v0.6.0