Skip to content

v0.12.0

Choose a tag to compare

@github-actions github-actions released this 01 Sep 21:51
560a3f3

0.12.0 (2025-09-01)

Gauge styles

Gauge card now has 2 new styles. Half style, which is familiar to built-in gauge card, and full style as 360° gauge. Half style gauge does not render some of the elements - icon and small state labels due to space constraints. Full gauge style by default starts from the bottom, but this can be changed with a new config, which is specifically made for this style, rotate_gauge. Gauge type can be changed in the card appearance section inside the visual editor.

gauge_modes

Combined mode

Another config made for the full gauge type is combine_gauges. This mode only supports primary and secondary entities (tertiary entity is ignored). Basically, this mode turns gauges into basic pie charts; primary entity state is displayed above the main state display, and secondary state is displayed under the main state. The main state display shows the sum of the two entities.

combined_mode

Timer and timestamp support

Gauge now supports displaying timer and timestamp entities. Timer entities automatically calculate the max value based on the timer duration. Timestamp-based entities need to manually calculate the max value. By default, seconds are displayed, but that can be toggled in the config.

timer_timestamp

Smarter updates

Gauge now updates only when one of the selected entities changes, improving dashboard performance with certain Home Assistant instances. These smarter updates are omitted when using templates.

Full Changelog

Bug Fixes

  • console error spam in card editor (#165) (dc61da8)
  • ignore tertiary entity when using combined mode (#168) (34fb8b0)
  • improve compatibility with older browsers (#163) (1e9f082)
  • incorrect ha-button styling (#152) (2882dee)
  • incorrect primary and tertiary state scaling (#166) (129f6dd)
  • zero displayed in entity not found gauge card (#158) (242edbe)

Features

Performance Improvements