Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Releases: custom-components/custom_updater

4.1.0

18 Feb 09:35
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

4.0.5

17 Feb 11:02
Compare
Choose a tag to compare

Changes

  • 75e9fbb .
  • c11ad6c Fix issue where user would try to add .js files to custom_urls

Full Changelog


This release was created with reporeleaser 🎉

4.0.4

16 Feb 11:12
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

4.0.3

15 Feb 23:22
Compare
Choose a tag to compare

Changes

  • 5ce48c4 Add cards as default track option

Full Changelog


This release was created with reporeleaser 🎉

4.0.2

15 Feb 16:13
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

4.0.1

14 Feb 16:51
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

4.0.0

13 Feb 19:23
Compare
Choose a tag to compare

This component has been disabled from updating itself for a while due to this change, I will add this back at a later time

A good amount of changes for handling of custom cards.

The logic behind how this handle versions for installed cards have changed, by doing that it opened up some possibilities, instead of reading line for line in ui-lovelace.yaml it now uses a new jsonfile .storage/custom_updater.cards.

First a couple of good things

Storage mode for lovelace is now supported.

To enable this download this version then add mode: storage to your configuration.

example

custom_updater:
  mode: storage
  track:
    - components
    - cards

If you use YAML mode with lovelace !include are now supported.

So over to the boring (still important stuff)

  • The first time you use this version it will not know the local version of your cards, click the UPDATE ALL button to correct this.

image

Resource url

?v=xxx tags in resource url is no longer need, this version of custom_updater will add another endpoint to your HA instance /customcards/, the goal of this is to not use /local/ which is designed for static files.

From this version you NEED to change your resource url's from /local/ to /customcards/ for all cards that you update with this component.

On your filesystem you will still place the cards under /www/, this change is only for under resources in your lovelace config.

old example:

resources: 
  - url: /local/tracker-card.js?v=0.3.0
    type: js

new example:

resources: 
  - url: /customcards/tracker-card.js
    type: js

Note that both the start of the url, and the tag at the end has changed.

Final words

If you use this component to upgrade custom cards, this has a lot of changes, if you only use it for component and/or python_scripts this will not change anything.

If you encounter issues, or have questions about this component please open a issue here and not in the support channels (discord/forum) for Home Assistant.

3.1.11

03 Feb 11:04
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

3.1.10

03 Feb 10:27
Compare
Choose a tag to compare

Changes

Full Changelog


This release was created with reporeleaser 🎉

3.1.8

20 Oct 09:48
Compare
Choose a tag to compare
  • Fixes a requirements issue if there where none