Skip to content

v1.0.0

Compare
Choose a tag to compare
@AalianKhan AalianKhan released this 19 Sep 16:50
· 44 commits to main since this release
f8f4cb1

What's Changed

Installation with HACS

See this HACS guide.

Breaking changes

Warning!
This release is not compatible with the dashboard configuration of previous full releases.
You should update your configuration as follows:

Areas

  • Remove the dash (-) in front of any options > areas > name property.
  • Add a line above this name property with the id of the area, followed by a colon (:).
  • Make sure you have correct indentation.
# From
options:
  areas:
    - name: Family Room
    ...
  ...

# To
options:
  areas:
    family_room_id:
      name: Family Room
      ...
    ...

Views

  • Rename the domain from plural to singular noun (lights > light, switches > switch, etc).
  • Remove the boolean value after the colon(:).
  • Add properties on the lines below.
# From
options:
  views:
    lights: true
    switches: true
    ...

# To
options:
  views:
    light:
      order: 0
      title: Illumination
      ...
    switch:
      order: 1
      hidden: true
      icon: mdi:toggle-switch
      ...
    ...

New Features

  • Overriding entity card properties.
  • Hide entities and devices.
options:
  card_options:
    my_first_entity_id:
      hidden: true
    my_second_entity_id:
      type: picture-entity
    077ba0492c9bb3b31ffac34f1f3a626a:
        hidden: true

Fixes

  • Navigation of the climate chip.
  • Fixed invalid examples in documentation
  • Fixed camera cards to use picture entity instead of WebRTC, to work with any cameras. You can still use card options to use WebRTC
  • Fixed Lock icon and media player icon
  • Fixed hiding default domain
  • Fixed position of Area title

Please consult the readme for how to configure the strategy.

Known Issues

  • Title cards or chips won't switch entities assigned to the undisclosed area (#26).

New Contributors

Full Changelog: 0.15...1.0.0