Releases: brunosabot/streamline-card
v0.0.12
Streamline Card v0.0.12
Hello there!
This release is a maintenance release to improve performances with streamline card : the execution of streamline card could be up to 30 times faster!
It also fixes a bug with some custom card particular behaviors.
Full Changelog: v0.0.11...v0.0.12
Let me know if you encounter any issue!
-- Bruno
v0.0.11
Streamline Card v0.0.11
Hello there!
This release is a maintenance release to address a bug on the visibility when put on parent and child.
The browser will crash because of an infinite loop.
With this template:
streamline_templates:
bubble_light:
card:
card_type: button
name: "[[entity]]"
type: "custom:bubble-card"
visibility:
- condition: state
entity: '[[entity]]'
state: 'on'
And the following usage:
type: custom:streamline-card
template: bubble_light
variables:
entity: light.all_office
visibility:
- condition: state
entity: light.all_office
state: 'on'
You no longer go in an update loop.
Full Changelog: v0.0.10...v0.0.11
Let me know if you encounter any issue!
-- Bruno
v0.0.10
Streamline Card v0.0.10
Hello there!
This release is a maintenance release to address a bug on the variables. Since you can have default values, the variables
key used in the templates should not be mandatory.
With this template:
streamline_templates:
bubble_separator:
default:
name: "Room"
card:
card_type: separator
name: "[[name]]"
type: "custom:bubble-card"
The following usage should be valid:
type: custom:streamline-card
template: bubble_separator
Full Changelog: v0.0.9...v0.0.10
Let me know if you encounter any issue!
-- Bruno
v0.0.9
Streamline Card v0.0.9
Hello there!
If you get confused with the array variables, I got you covered!
Streamline card is no able to handle objects for default and variables keys, while still supporting the array notation!
Templates Before
streamline_templates:
bubble_separator:
default:
- name: "Room"
card:
card_type: separator
icon: "[[icon]]"
name: "[[name]]"
type: "custom:bubble-card"
Templates After
streamline_templates:
bubble_separator:
default:
name: "Room"
card:
card_type: separator
icon: "[[icon]]"
name: "[[name]]"
type: "custom:bubble-card"
Usage Before
type: custom:streamline-card
template: bubble_separator
variables:
- name: Actions
- icon: mdi:button-pointer
Usage After
type: custom:streamline-card
template: bubble_separator
variables:
name: Actions
icon: mdi:button-pointer
Full Changelog: v0.0.8...v0.0.9
Let me know if you encounter any issue!
-- Bruno
v0.0.8
Streamline Card v0.0.8
Hello there!
Today is a maintenance release for streamline-card, fixing some of bugs.
This release contains:
- Handle sub-elements such as images
- Fix an error that prevent the label to be displayed in the editor
Full Changelog: v0.0.7...v0.0.8
Let me know if you encounter any issue!
-- Bruno
v0.0.7
Streamline Card v0.0.7
Hello there!
Today is a maintenance release for streamline-card, fixing a lot of bugs.
This release contains:
- Fixes on the editor to make the experience smoother
- A fix when combining javascript and basic templates
- A performance improvement on template parsing
- A better error handling
Full Changelog: v0.0.6...v0.0.7
Let me know if you encounter any issue!
-- Bruno
v0.0.6
Streamline Card v0.0.6
Hello there!
Today, I provide a big milestone for streamline card, providing the Streamline Card UI editor!
You will still have to register your templates by hand, but the creation will now become smoother than ever!
This release contains:
- The streamline card editor !
- A fix on some unaccepted values sent to the child card
- A fix on some intempestive refresh of the card
Full Changelog: v0.0.5...v0.0.6
Let me know if you encounter any issue!
-- Bruno
v0.0.5
Streamline Card v0.0.5
Hello there!
Today, the release of streamline card is fixing visibility!
This release contains:
- I add the support of the visibility key from right inside a streamline card template
Full Changelog: v0.0.4...v0.0.5
Let me know if you encounter any issue!
-- Bruno
v0.0.4
Streamline Card v0.0.4
Hello there!
One more pre-release with some dev goodies inside and some bug fixes outside
This release contains:
- A fix on the array parsing: the array is no longer parsed without the
_javascript
suffix. - A fix on the config update. It was not fully reactive, now it is!
- A bunch of dev optimizations:
- Add tests in the code to avoid regressions
- Add formatting / linting rules to the project
Full Changelog: v0.0.3...v0.0.4
Let me know if you encounter any issue!
-- Bruno
v0.0.3
Streamline Card v0.0.3
Hello there!
Here is the release of the second version of streamline card with a single but worthy change that helped me remove some very dirty code out of my dashbord!
This second release contains:
- The ability to have a JavaScript expression in your template, with the suffix
_javascript
Full Changelog: v0.0.2...v0.0.3
Let me know if you encounter any issue!
-- Bruno