Does Custom Updater show ALL Custom Components

I’ve been reading thu the documentation and the changes both pre .4 and after and think I have it right but… My Tracker card is missing the Custom Darksky Weather Card & Custom Swipe
Should they be showing? Appreciate your thoughts on why 2 cards aren’t showing, thanks

resources:
  - url: /customcards/github/thomasloven/card-tools.js
    type: js
  - url: /customcards/github/thomasloven/useful-markdown-card.js
    type: js
  - url: /customcards/github/thomasloven/layout-card.js
    type: js
  - url: /customcards/github/thomasloven/gap-card.js
    type: js
  - url: /customcards/github/thomasloven/state-switch.js
    type: js

  - url: /customcards/custom-lovelace/dark-sky-weather-card.js
    type: module

  - url: https://cdn.jsdelivr.net/gh/bramkragten/custom-ui@master/swipe-card/swipe-card.min.js
    type: module
  - url: /customcards/github/custom-cards/tracker-card.js
    type: module
  - url: /customcards/github/maykar/compact-custom-header.js
    type: module

Some of the cards/components use the auto inclusion into the custom_updater. Others need to have the version URL added manually to the custom_updater configuration. You’ll need to go to the component install instructions to see which is which.

1 Like

Some of these cards, Custom Dark Sky Weather Card for example need the source shown in configuration for the custom_updater. Here is my section in config yaml

# Custom Component Updater
custom_updater:
  hide_sensor: false
  track:
    - components
    - cards
    - python_scripts
  component_urls:
    - https://raw.githubusercontent.com/pnbruckner/homeassistant-config/master/custom_components.json
  card_urls:
    - https://raw.githubusercontent.com/kalkih/mini-media-player/master/tracker.json
    - https://raw.githubusercontent.com/kalkih/mini-graph-card/master/tracker.json
    - https://raw.githubusercontent.com/iammexx/home-assistant-config/master/ui/darksky/version.json
3 Likes

This was a helpful example. Thanks @DavidFW1960 !

1 Like