Skip to content

Commit

Permalink
Custom updated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanderhuisman committed Feb 19, 2019
1 parent ee0294a commit 90cf247
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 19 deletions.
60 changes: 41 additions & 19 deletions custom_updater.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,42 @@
{
"docker_monitor" : {
"updated_at" : "2019-02-19",
"version" : "0.0.1",
"changelog" : "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo" : "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"eetlijst" : {
"updated_at" : "2019-02-19",
"version" : "0.0.1",
"changelog" : "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo" : "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"luftdaten" : {
"updated_at" : "2019-02-19",
"version" : "0.0.1",
"changelog" : "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo" : "https://github.com/Sanderhuisman/home-assistant-custom-components"
}
}
"docker_monitor": {
"updated_at": "2019-02-19",
"version": "0.0.1",
"local_location": "custom_components/docker_monitor.py",
"remote_location": "https://raw.githubusercontent.com/Sanderhuisman/home-assistant-custom-components/master/docker_monitor.py",
"changelog": "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo": "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"docker_monitor.sensor": {
"updated_at": "2019-02-19",
"version": "0.0.1",
"local_location": "custom_components/sensor/docker_monitor.py",
"remote_location": "https://raw.githubusercontent.com/Sanderhuisman/home-assistant-custom-components/master/sensor/docker_monitor.py",
"changelog": "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo": "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"docker_monitor.switch": {
"updated_at": "2019-02-19",
"version": "0.0.1",
"local_location": "custom_components/switch/docker_monitor.py",
"remote_location": "https://raw.githubusercontent.com/Sanderhuisman/home-assistant-custom-components/master/switch/docker_monitor.py",
"changelog": "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo": "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"eetlijst.sensor": {
"updated_at": "2019-02-19",
"version": "0.0.1",
"local_location": "custom_components/sensor/eetlijst.py",
"remote_location": "https://raw.githubusercontent.com/Sanderhuisman/home-assistant-custom-components/master/sensor/eetlijst.py",
"changelog": "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo": "https://github.com/Sanderhuisman/home-assistant-custom-components"
},
"luftdaten.sensor": {
"updated_at": "2019-02-19",
"version": "0.0.1",
"local_location": "custom_components/sensor/luftdaten_cu.py",
"remote_location": "https://raw.githubusercontent.com/Sanderhuisman/home-assistant-custom-components/master/sensor/luftdaten_cu.py",
"changelog": "https://github.com/Sanderhuisman/home-assistant-custom-components/releases/latest",
"visit_repo": "https://github.com/Sanderhuisman/home-assistant-custom-components"
}
}
2 changes: 2 additions & 0 deletions docker_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from homeassistant.helpers.discovery import load_platform
from homeassistant.util import slugify as util_slugify

VERSION = '0.0.1'

REQUIREMENTS = ['docker==3.7.0', 'python-dateutil==2.7.5']

_LOGGER = logging.getLogger(__name__)
Expand Down
1 change: 1 addition & 0 deletions sensor/docker_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
UTILISATION_MONITOR_VERSION
)

VERSION = '0.0.1'

DEPENDENCIES = ['docker_monitor']

Expand Down
2 changes: 2 additions & 0 deletions sensor/eetlijst.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle

VERSION = '0.0.1'

REQUIREMENTS = ['beautifulsoup4==4.7.0']

_LOGGER = logging.getLogger(__name__)
Expand Down
2 changes: 2 additions & 0 deletions sensor/luftdaten_cu.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle

VERSION = '0.0.1'

_LOGGER = logging.getLogger(__name__)

BASE_URL = 'https://api.luftdaten.info/v1'
Expand Down
2 changes: 2 additions & 0 deletions switch/docker_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
DOCKER_HANDLE
)

VERSION = '0.0.1'

DEPENDENCIES = ['docker_monitor']

_LOGGER = logging.getLogger(__name__)
Expand Down

0 comments on commit 90cf247

Please sign in to comment.