diff --git a/README.md b/README.md index 23afca5..a14ed72 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/custom_components/custom_updater/__init__.py b/custom_components/custom_updater/__init__.py index 7552b09..bc947b6 100644 --- a/custom_components/custom_updater/__init__.py +++ b/custom_components/custom_updater/__init__.py @@ -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__) @@ -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':