Releases: piitaya/lovelace-mushroom
v2.1.2
What's Changed
New Features 🎉
- feat(climate): add badge for idle action by @piitaya in #644
- feat(climate): change fan only mode color to teal by default by @piitaya in #645
Fixes 🐛
- fix(climate): button icon colors by @ulic75 in #623
- fix(climate): improve theme support for input number by @piitaya in #643
Translations 🌍
- Update zh-Hant.json by @rhuba8324 in #624
- Update German translation by @steffenrapp in #625
Other Changes
New Contributors
Full Changelog: v2.1.1...v2.1.2
v2.1.1
Let's introduce... the climate card ! 🌡
You can now control your climate entity directly from your Mushroom dashboard ! It supports HVAC modes and temperature control. Presets are not supported yet and will come in a future version 😉.
Also, picture support has been added to template chip 🖼.
What's Changed
New Features 🎉
- feat(chip): add template picture support by @piitaya in #598
- feat(climate): create climate card by @piitaya in #575
- feat(climate): add collapsible controls to climate card by @piitaya in #620
Fixes 🐛
- fix(slider): prevent selecting values that don't lie on a step by @acshef in #582
- fix(climate): fix default step for climate temperature control by @piitaya in #618
Translations 🌍
- Update zh-Hant.json by @rhuba8324 in #578
- Update German translation by @steffenrapp in #584
- Update to Italian translation by @Doryx3D in #572
- Finnish translation by @Ramiky123 in #597
- Update Polish translation by @TomaszDom in #611
- Update Polish translation by @TomaszDom in #617
Other Changes
- refactor(entity): use base card in entity card by @piitaya in #573
- doc: fix template table by @smiller171 in #586
New Contributors
- @acshef made their first contribution in #582
- @smiller171 made their first contribution in #586
- @Ramiky123 made their first contribution in #597
Full Changelog: v2.0.0...v2.1.1
v2.1.0
Let's introduce... the Climate card ! 🌡
You can now control your climate entity directly from your Mushroom dashboard ! It supports HVAC modes and temperature control. Presets are not supported yet and will come in a future version 😉.
Also, picture support has been added to template chip 🖼.
What's Changed
New Features 🎉
- chip: add template picture support by @piitaya in #598
- climate: create climate card by @piitaya in #575
Translations 🌍
- Update zh-Hant.json by @rhuba8324 in #578
- Update German translation by @steffenrapp in #584
- Update to Italian translation by @Doryx3D in #572
- Update Polish translation by @TomaszDom in #611
- Finnish translation by @Ramiky123 in #597
Other Changes
- chore: use base card in entity card by @piitaya in #573
- chore: Prevent selecting values that don't lie on a step by @acshef in #582
- doc: fix template table by @smiller171 in #586
New Contributors
- @acshef made their first contribution in #582
- @smiller171 made their first contribution in #586
- @Ramiky123 made their first contribution in #597
Full Changelog: v2.0.0...v2.1.0
v2.0.0
It's a big update for Mushroom ! 🤩 This release add a lot of flexibility to all Mushroom cards 🍄
Thanks again for supporting and using Mushroom 🍄 . The project has reached 1000 stars on Github. Amazing ! ⭐️
Warning
Some options has been deprecated. Read this release note carefully to see what's changed. A backward-compatibility has been added to avoid breaking your dashboard but it's highly recommended to migrate to the new options.
Primary and secondary info ✍️
primary_info
and secondary_info
options was already available for entity card. These options are now available for all cards.
Example : Cover with state as primary info and last-changed as secondary info.
Config options
primary_info: "name", "state", "last-changed", "last-updated", "none"
secondary_info: "name", "state", "last-changed", "last-updated", "none"
Warning
hide_name
andhide_state
has been removed from all cards. Useprimary_info: none
andsecondary_info: none
instead.
Icon type 🎨
icon_type
option has been added to all cards. You can now choose if you want to display a icon 🎨, a picture 🖼 or nothing 🙈
Config options
icon_type: "icon", "entity-picture", "none"
Warning
use_entity_picture
andhide_icon
has been removed from all cards. Useicon_type: entity-picture
andicon_type: none
instead.
Better layout 👩🎨
The layout has been improved to better support hidden element. You can now have icon only card or even control only card if you want.
Example : Light with only icon and light with only control.
Picture for template
It's a highly requested feature. Picture option is now available for template card.
Example
What's Changed
New Features 🎉
- feat(card: add appearance config between all card by @piitaya in #528
- feat(card): better support layout support with icon only or control only by @piitaya in #569
- feat(template): add picture to template by @piitaya in #570
Translations 🌍
- Update zh-Hant.json by @rhuba8324 in #561
- Update to Italian translation by @Doryx3D in #562
- Update German translation by @steffenrapp in #565
Full Changelog: v1.10.0...v2.0.0
v1.10.0
Let's introduce badge_icon
and badge_color
option for template card ! 🚀
What's Changed
New Features 🎉
- feat(template): add badge to template card by @Gnol86 in #555
- feat(template): improve badge color and add example in view by @piitaya in #556
Other Changes
New Contributors
Full Changelog: v1.9.0...v1.10.0
v1.9.0
What's Changed
New Features 🎉
- feat(slider): add animation and step support for fan to slider by @piitaya in #521
- feat(entity): add weather icon based on entity state by @golles in #538
Fixes 🐛
- fix: improve tap_action vibrate support by @piitaya in #540
- fix: action editor is now compatible with HA 2022.6 by @piitaya in #540
Translations 🌍
- add Portuguese translation by @mdiazgoncalves in #511
- fix localize.ts by @AtomikWiWa in #519
- update Polish translation by @TomaszDom in #526
Other Changes
- split configuration into packages by @piitaya in #516
- refactor(config): share config between cards by @piitaya in #523
New Contributors
- @mdiazgoncalves made their first contribution in #511
Full Changelog: v1.8.8...v1.9.0
v1.8.8
Breaking changes
For card_mod
users 🤖
You can no longer style chip background
and box-shadow
with card_mod
. You must use theme variables : --chip-background
and --chip-box-shadow
.
Old style
card_mod:
style: |
ha-card {
box-shadow: none;
background: none;
}
New style
card_mod:
style: |
ha-card {
--chip-box-shadow: none;
--chip-background: none;
}
What's Changed
New Features 🎉
- feat(theme): add card text line height variable by @piitaya in #496
- feat(chip): improve stack in card support by @piitaya in #502
Fixes 🐛
- fix: hacs version by @acesyde in #498
- fix(button): ignore button ratio if fill mode for button group by @piitaya in #503
- fix(chip): restore ha-card element on chip for better styling by @piitaya in #512
Translations 🌍
- add Hebrew translation by @AwesomeSapir in #509
- added 'Show Volume Level' and 'Collapse Controls translations' by @ldvc86 in #501
New Contributors
- @AwesomeSapir made their first contribution in #509
Full Changelog: v1.8.5...v1.8.8
v1.8.5
What's Changed
Fixes 🐛
- fix(picture): fix entity picture on cast devices by @piitaya in #494
- fix(person): fix state not displayed on cast devices by @piitaya in #495
Translations 🌍
- add Spanish translation by @AtomikWiWa in #484
- add Polish translation by @TomaszDom in #481
New Contributors
- @AtomikWiWa made their first contribution in #484
- @TomaszDom made their first contribution in #481
Full Changelog: v1.8.3...v1.8.5
v1.8.3
No big changes for this release but some improvements and bug fixes.
You can now customize icon, control and badge sizes using themes variables 🎨. You can find the full list of themes variables in Mushroom Themes documentation. If you want bigger icons or smaller slider. It's now possible 🧑🎨
What's Changed
New Features 🎉
- feat(themes): allow customizing badge, icon, control sizes by @redphx in #464
- feat(themes): improve css variables by @piitaya in #466
Fixes 🐛
- fix(chip): add picture only support by @piitaya in #468
- Fix(control): add horizontal scroll if too much actions by @piitaya in #469
- fix(template): strict error handling in templates by @frenck in #472
Translations 🌍
- update German translation by @steffenrapp in #458
- update zh-Hant.json by @rhuba8324 in #455
- update German translation by @steffenrapp in #474
- update Italian translation by @doryxbirb in #478
Other Changes
- add show_keypad to alarm card documentation by @Mincka in #459
- update README to reflect recent UI changes in HA by @redphx in #470
New Contributors
Full Changelog: v1.8.0...v1.8.3
v1.8.0
What's Changed
New Features 🎉
- feat(humidifier): add humidifier support by @acesyde in #346
- feat(media-player): show volume next to state when not unavailable/unknown/off by @madmurl0c in #374
- feat(media-player): add option to display volume level by @piitaya in #452
Fixes 🐛
Translations 🌍
Other Changes
New Contributors
- @redphx made their first contribution in #448
- @madmurl0c made their first contribution in #374
Full Changelog: v1.7.4...v1.8.0