版本发布 3
**Breaking** Entity icons are now colored by state by default, matching Home Assistant's entities card since 2026.8. Previously they were uncolored unless you set `state_color: true`. To restore the old look, set `color: none` on the row or entity: ```yaml - type: custom:multiple-entity-row entity: light.kitchen color: none ``` Rows already using `state_color` or `icon_color` are unaffected. **What's new** `color` on the row and on additional entities, following HA's icon color API: `state`, `none`, a theme color name (`red`, `deep-purple`, `accent`, ...) or any CSS color. Templatable like `icon_color`. ```yaml - type: custom:multiple-entity-row entity: binary_sensor.front_door color: state entities: - entity: light.porch icon: true color: amber ``` Works back to HA 2024.4. Theme color names and `state` need 2026.8+ for the *main row* icon, since older versions of HA's row don't forward the option — use `icon_color` there. Additional entities work on all supported versions. **Deprecated** `state_color` — still accepted and mapped to `color` (`true` → `state`, `false` → `none`), and no longer offered in the visual editor. **Full Changelog**: https://github.com/benct/lovelace-multiple-entity-row/compare/v4.8.0...v4.9.0-beta.1
**Fixed:** - Incorrect state icons for HA 2024.2+ (#330, #331)
**Added:** - Support default value for missing/hidden entity (#241) - Fahrenheit to celsius and celsius to fahrenheit formatter (#243) - Formatting option for duration as hours `duration-h` (#263) - Support state object attributes as formatting values (#267) **Changed:** - Support new translation_key for entity states (#289, #290, #293) **Fixed:** - Rendering of secondary info with last-changed/updated attributes (#222) _This release might require HA >= 2023.4.x._