No more updates are added to this component, use this instead:
https://github.com/custom-components/custom_updater
A component which allows you to update your custom_components automatically and monitor their versions from the UI. It exposes three services: custom_components.download_single
, custom_components.update_all
, custom_components.update_single
and custom_components.check_all
.
To get the best use for this component, use together with tracker-card\
To get started put /custom_components/custom_components.py
here: <config directory>/custom_components/custom_components.py
In your configuration.yaml
:
custom_components:
In your configuration.yaml
logger:
default: warn
logs:
custom_components.custom_components: debug
You can update a single component by passing which component you want to update to the custom_components.update_single
service.
Service: custom_components.update_single
Service Data:
{
"component":"sensor.authenticated"
}
Service: custom_components.download_single
Service Data:
{
"component":"sensor.authenticated"
}