0.61.0 - New Documentation Site, green circle thing options, new slider style! 📝 🦀
New Documentation Site
We now have a dedicated documentation site with comprehensive guides, examples, and configuration references:
homeassistant-extras.github.io/room-summary-card
The site includes detailed documentation on all features, theming, advanced usage, and troubleshooting.
New Bar Slider Style
A new slider style option that displays a color-filled bar with a black line indicator. Perfect for a clean, modern look without the entity icon.
type: custom:room-summary-card
area: living_room
features:
- slider
slider_style: bar
Configurable Problem Indicator Display (whatever that green circle is)
You can now control how the problem indicator (the green/red circle notification) is displayed on your room cards!
What's New
The problem indicator can now be configured with three display modes:
- Always (default) - Shows the indicator at all times
- Green circle when no problems are active
- Red pulsing circle when problems are active
- Active Problems Only - Only shows when there's an actual issue
- Hides the green circle when no problems are active
- Shows red pulsing circle only when problems exist
- Never - Completely hides the problem indicator
- Useful if you don't want to see the indicator at all
- Note: The mold indicator will still display if configured
How to Use
Configure via the card editor:
- Open the card editor
- Expand the "Problem Indicator" section
- Select your preferred display mode from the dropdown
Or configure directly in YAML:
type: custom:room-summary-card
area: living_room
problem:
display: active_only # Options: always, active_only, neverExample Configurations
Show indicator only when problems are active:
problem:
display: active_onlyHide the indicator completely:
problem:
display: neverAlways show (default behavior):
problem:
display: alwaysBug Fixes
Fixed: State-Based Icons Now Override Configured Icons
Fixed an issue where state-based icons (from states configuration) were not overriding the configured icon property. State-based icons now correctly take priority over the configured icon, allowing dynamic icon changes based on entity state.
Before: Configured icon always took priority, preventing state-based icons from displaying.
After: State-based icons now override configured icons, with the configured icon serving as a fallback when no state matches.
This fix ensures that configurations like the following work correctly:
entity:
entity_id: sensor.living_room_icon_colour
icon: mdi:sofa # Fallback icon
states:
- state: purple
icon: mdi:sun-snowflake-variant
- state: blue
icon: mdi:snowflake
- state: amber
icon: mdi:lightbulbThe icon will now dynamically change based on the sensor state, with mdi:sofa used as a fallback when no state matches.
- chore: bumps version to 0.61.0 by @gh-action-bump-version
- state icon overrides config icon again - thanks @CaptainSteubing! by @warmfire540
- documentation site for ease by @warmfire540
- slider bar style - thanks @hfalk! by @warmfire540
- hide the green circle, whatever it is - thanks @eTron! by @warmfire540
What's Changed
- New Documentation Site, green circle thing options, new slider style! 📝 🦀 by @warmfire540 in #362
Full Changelog: 0.60.0...0.61.0