v1.0.0
What's Changed
- Fix invalid example by @nwithan8 in #22
- Code Cleanup by @DigiLive in #7
- Add pre-releases to release badge by @DigiLive in #29
- Add options to configure entity-cards by @DigiLive in #31
- Add version request to bug report by @DigiLive in #36
- Fix camera cards to use picture entity by default by @AalianKhan in #39
- Fix lock icon by adding lock domain and default domain bug by @AalianKhan in #43
- Fix hiding default domain by @AalianKhan in #47
- Fix area title position by @AalianKhan in #50
- Add option to hide all entities of a device. by @AalianKhan in #51
- Update documentation by @AalianKhan in #55
- Fix 2 Title cards in pre-built views by @DigiLive in #57
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 theid
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