Skip to content

1.0.0-alpha.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@DigiLive DigiLive released this 20 Jul 08:27
· 73 commits to main since this release
140aec8

What's Changed

  • Add pre-releases to release badge by @DigiLive in #29
  • Add options to configure entity-cards by @DigiLive in #31
  • Fix navigation of the climate chip.

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
      ...
    ...

Fixes

  • Navigation of the climate chip.

New Features

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

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).

Full Change log: 1.0.0-alpha.1...1.0.0-alpha.2