v3.0.0
🚀 Features & Improvements
- Translations: Added Hungarian translation. (Thanks @Bt338!)
- Layout: Home View layout has been migrated from masonry to Sections.
- Organization: Domains within a view now follow a more logical default sorting order.
- Greeting Card: Moved to the "Persons" section and is now hidden by default.
⚠️ Breaking Changes
Caution
The following changes may require manual updates to your configuration:
-
Home View: The option
hiddenhas changed from an Array to an Object shape.
Action: Refer to the documentation on Hiding Sections to update your configuration. -
Home View: The option
AreasTitlehas been renamed toarea_title.
Action: Refer to the documentation on Hiding Sections to update your configuration.from:
strategy: type: custom:mushroom-strategy options: home_view: hidden: - greeting - areasTitle
to
strategy: type: custom:mushroom-strategy options: home_view: hidden: greeting: true areasTitle: true
-
Home View: Chips are renamed to Badges.
Action: Please rename anychipreferences in your configuration tobadge.
See: Badge Options.from
strategy: type: custom:mushroom-strategy options: chips: ... extra_chips: ....
to
strategy: type: custom:mushroom-strategy options: badges: ... extra_badges: ....
-
Domain: The option
showControlshas been renamed toshow_controls.
Action: Rename anyshowControlsreference in your configuration toshow_controls.
See: Domain Options.from
strategy: type: custom:mushroom-strategy options: domains: switch: showControls: false
to
strategy: type: custom:mushroom-strategy options: domains: switch: show_controls: false
🐛 Bug Fixes
- Miscellaneous Card: Fixed an issue where the entity icon was not being displayed.
- Sensors: Fixed a bug where sensor entities without a defined unit_of_measurement were excluded from views.
- Sorting: Fixed entity sorting to correctly prioritize display/friendly names.
📦 Dependency Updates
- Updated internal dependencies to their latest versions.