Skip to content

Releases: brunosabot/streamline-card

v0.0.22

02 Feb 11:34
7b52f89
Compare
Choose a tag to compare

Streamline Card v0.0.22

Hello there!

This release includes a fix forthe editor that wasn't able to copy grid_options and visibility configuration.

Full Changelog: v0.0.21...v0.0.22

Let me know if you encounter any issue!

-- Bruno

v0.0.21

28 Jan 20:04
b93e185
Compare
Choose a tag to compare

Streamline Card v0.0.21

Hello there!

This release includes a fix where the variables are not correctly passed to deep objects

Full Changelog: v0.0.20...v0.0.21

Let me know if you encounter any issue!

-- Bruno

v0.0.20

21 Jan 19:54
fcae151
Compare
Choose a tag to compare

Streamline Card v0.0.20

Hello there!

This release includes a fix where, on some cards, the hass variable is not set fast enough.

Full Changelog: v0.0.19...v0.0.20

Let me know if you encounter any issue!

-- Bruno

v0.0.19

27 Nov 19:19
6a7acfa
Compare
Choose a tag to compare

Streamline Card v0.0.19

Hello there!

This release handle a better way the deprecation for getLayoutOptions.
Now cards with only a getLayoutOptions method with no getGridOptions method are correctly supported back

Full Changelog: v0.0.18...v0.0.19

Let me know if you encounter any issue!

-- Bruno

v0.0.18

23 Nov 18:20
0aff838
Compare
Choose a tag to compare

Streamline Card v0.0.18

Hello there!

🔴 This release is a breaking change for UI users. yaml users won't be impacted.

The editor wasn't handling rightfully empty states over states with an empty string, making the usage of default values impossible.

This is caused by how Home Assistant editor works: empty string and non existant keys are the same, while it's not the case for Streamline card: empty string is an actual possible value (that will often fallback to internal cards behavior, such as using the friend_name if name is empty) while non existant means that you should use the default.

If you still want to be able to have empty string, you should use it in the default field

Before:

streamline_cards:
  my_template:
    card:
      # ...
      name: ''

After:

streamline_cards:
  my_template:
    default:
      name: ''
    card:
      # ...

Full Changelog: v0.0.17...v0.0.18

Let me know if you encounter any issue!

-- Bruno

v0.0.17

23 Nov 16:59
d3a7db1
Compare
Choose a tag to compare

Streamline Card v0.0.17

Hello there!

This release supports the new getGridOptions that replaces the previous getLayoutOptions.

Full Changelog: v0.0.16...v0.0.17

Let me know if you encounter any issue!

-- Bruno

v0.0.16

23 Nov 16:31
5aca2d4
Compare
Choose a tag to compare

Streamline Card v0.0.16

Hello there!

This release fixes an latency issue with some cards such as mini-graph-card

Full Changelog: v0.0.15...v0.0.16

Let me know if you encounter any issue!

-- Bruno

v0.0.15

07 Nov 16:36
f36bb14
Compare
Choose a tag to compare

Streamline Card v0.0.15

Hello there!

This release fixes an error with UI dashboards and HASS 2024.11 release.

Full Changelog: v0.0.14...v0.0.15

Let me know if you encounter any issue!

-- Bruno

v0.0.14

28 Oct 09:02
dc3c156
Compare
Choose a tag to compare

Streamline Card v0.0.14

Hello there!

This release gives you a new feature: you can now access variables from inside the JavaScript templates.

Example:

streamline_templates:
  bubble_counter:
    card:
      card_type: button
      button_type: name
      name_javascript: "variables.counter > 10 ? '10+' : variables.counter"
      type: "custom:bubble-card"

Full Changelog: v0.0.13...v0.0.14

Let me know if you encounter any issue!

-- Bruno

v0.0.13

30 Sep 07:08
a681a15
Compare
Choose a tag to compare

Streamline Card v0.0.13

Hello there!

This release is a maintenance release to fix a bug on JavaScript template detection.

Full Changelog: v0.0.12...v0.0.13

Let me know if you encounter any issue!

-- Bruno