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

Commit

Permalink
Deprecation update
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Oct 29, 2019
1 parent 9fef56e commit 3ea11ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 31 deletions.
29 changes: 3 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,5 @@
# Custom Updater
# Custom Updater [DEPRECATED]

_A component which allows you to track and update custom cards/components and python_scripts._
This integration is deprecated and will no longer be maintained.

## Partial deprecation.

Continued development for this custom_component have now come to a stop.
There will be no new features added to this, and only blocking major issues will be fixed.
The service that generates the json files [here](https://github.com/custom-cards/information/blob/master/repos.json) and [here](https://github.com/custom-components/information/blob/master/repos.json) will shut down later 2019 or early 2020 (more details will be posted later.)

Why?, you can read most of my issues with it here https://github.com/custom-components/custom_updater/issues/117

What now? [HACS](https://github.com/custom-components/hacs)
HACS are not a full replacement, but it replaces most of the functionality and support, and then some, check it out :)


***

For installation and updating and for more info about this component have a look at the ["docs".](https://custom-components.github.io/custom_updater/Installation)

***

# ISSUES?

If you encounter issues with this, please do **not** flood the Home Assistant discord server, or the forums with requests, this is a custom_component and all issues with custom components _should_ be handled by the developer of that component.

Open an issue in **this** repo.
https://github.com/custom-components/custom_updater/issues
As an alternative have a look at HACS https://hacs.xyz
10 changes: 5 additions & 5 deletions custom_components/custom_updater/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from homeassistant.components.http import HomeAssistantView
from homeassistant.helpers.event import async_track_time_interval

VERSION = '5.1.1'
VERSION = '6.0.0'

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -63,12 +63,12 @@ async def async_setup(hass, config):
conf_component_urls = config[DOMAIN][CONF_COMPONENT_CONFIG_URLS]
conf_py_script_urls = config[DOMAIN][CONF_PYTHON_SCRIPT_CONFIG_URLS]

_LOGGER.info('if you have ANY issues with this, please report them here:'
' https://github.com/custom-components/custom_updater')

_LOGGER.debug('Version %s', VERSION)
_LOGGER.debug('Mode %s', conf_mode)


_LOGGER.warning("This integration is deprecated, and is no longer maintained."
"As an alternative have a look at HACS https://hacs.xyz")

hass.http.register_view(CustomCardsView(str(hass.config.path())))

if conf_mode == 'yaml':
Expand Down

0 comments on commit 3ea11ca

Please sign in to comment.