Skip to content

v3.0.0

Choose a tag to compare

@DigiLive DigiLive released this 23 Mar 19:15
bbbc108

🚀 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 hidden has changed from an Array to an Object shape.
    Action: Refer to the documentation on Hiding Sections to update your configuration.

  • Home View: The option AreasTitle has been renamed to area_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 any chip references in your configuration to badge.
    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 showControls has been renamed to show_controls.
    Action: Rename any showControls reference in your configuration to show_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.