v0.13.0
0.13.0 (2025-11-16)
History graph
Now you can display small history graph, this will give more information about how the entity state changes in the configured time period. Each entity has its own y-axis and by default follow the min and max bound defined in the gauge but this can be changed to be dynamic. Graph have configurable display resolution.

JavaScript templates
Tired of using Jinja for templates? Now you can use JavaScript! Every config that can be used with templates support both Jinja and JavaScript templates. JavaScript templates are performed on client side so they should be faster.
Alongside with this addition, when using templates, Jinja or JavaScript, card now updates only when template result changes.
JavaScript template example
type: custom:modern-circular-gauge
entity: sensor.sunsynk_grid_power
icon: |-
[[[
if (Number(states('sensor.sunsynk_grid_power')) > 0) {
return "mdi:transmission-tower-export";
} else {
return "mdi:transmission-tower-import";
}
]]]Full Changelog
Bug Fixes
- color segments template fails to execute when using
"(#187) (df7bca8) - secondary and tertiary incorrect error handling (#194) (0c56afb)