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

Commit 3ea11ca

Browse files
committed
Deprecation update
1 parent 9fef56e commit 3ea11ca

File tree

2 files changed

+8
-31
lines changed

2 files changed

+8
-31
lines changed

README.md

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,5 @@
1-
# Custom Updater
1+
# Custom Updater [DEPRECATED]
22

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

5-
## Partial deprecation.
6-
7-
Continued development for this custom_component have now come to a stop.
8-
There will be no new features added to this, and only blocking major issues will be fixed.
9-
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.)
10-
11-
Why?, you can read most of my issues with it here https://github.com/custom-components/custom_updater/issues/117
12-
13-
What now? [HACS](https://github.com/custom-components/hacs)
14-
HACS are not a full replacement, but it replaces most of the functionality and support, and then some, check it out :)
15-
16-
17-
***
18-
19-
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)
20-
21-
***
22-
23-
# ISSUES?
24-
25-
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.
26-
27-
Open an issue in **this** repo.
28-
https://github.com/custom-components/custom_updater/issues
5+
As an alternative have a look at HACS https://hacs.xyz

custom_components/custom_updater/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from homeassistant.components.http import HomeAssistantView
1616
from homeassistant.helpers.event import async_track_time_interval
1717

18-
VERSION = '5.1.1'
18+
VERSION = '6.0.0'
1919

2020
_LOGGER = logging.getLogger(__name__)
2121

@@ -63,12 +63,12 @@ async def async_setup(hass, config):
6363
conf_component_urls = config[DOMAIN][CONF_COMPONENT_CONFIG_URLS]
6464
conf_py_script_urls = config[DOMAIN][CONF_PYTHON_SCRIPT_CONFIG_URLS]
6565

66-
_LOGGER.info('if you have ANY issues with this, please report them here:'
67-
' https://github.com/custom-components/custom_updater')
68-
6966
_LOGGER.debug('Version %s', VERSION)
7067
_LOGGER.debug('Mode %s', conf_mode)
71-
68+
69+
_LOGGER.warning("This integration is deprecated, and is no longer maintained."
70+
"As an alternative have a look at HACS https://hacs.xyz")
71+
7272
hass.http.register_view(CustomCardsView(str(hass.config.path())))
7373

7474
if conf_mode == 'yaml':

0 commit comments

Comments
 (0)