Skip to content

Commit

Permalink
Merge pull request #30 from JackJPowell/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
JackJPowell committed Apr 10, 2024
2 parents ae8b057 + 4c74cfb commit 69eebf3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions custom_components/unfoldedcircle/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"codeowners": ["@jackjpowell"],
"config_flow": true,
"dependencies": ["network", "zeroconf"],
"version": "0.6.3",
"version": "0.6.5",
"documentation": "https://github.com/JackJPowell/hass-unfoldedcircle",
"homekit": {},
"integration_type": "device",
"iot_class": "local_push",
"requirements": ["websockets==12.0", "pyUnfoldedCircleRemote==0.6.4"],
"requirements": ["websockets==12.0", "pyUnfoldedCircleRemote==0.6.5"],
"ssdp": [],
"zeroconf": ["_uc-remote._tcp.local."]
}
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ async def get_remote_update_information(self) -> bool:
await self.raise_on_error(response)
information = await response.json()
self._update_in_progress = information["update_in_progress"]
self._next_update_check_date = information["next_check_date"]
# self._next_update_check_date = information["next_check_date"]
self._sw_version = information["installed_version"]
self._automatic_updates = information["update_check_enabled"]
if "available" in information:
Expand Down Expand Up @@ -826,7 +826,7 @@ async def get_remote_force_update_information(self) -> bool:
await self.raise_on_error(response)
information = await response.json()
self._update_in_progress = information["update_in_progress"]
self._next_update_check_date = information["next_check_date"]
# self._next_update_check_date = information["next_check_date"]
self._sw_version = information["installed_version"]
self._automatic_updates = information["update_check_enabled"]
if "available" in information:
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Home Assistant
homeassistant>=2024.3
homeassistant>=2024.4
home-assistant-frontend

# Integration
pyUnfoldedCircleRemote~=0.6.1
pyUnfoldedCircleRemote~=0.6.5

# Development
black
Expand All @@ -17,5 +17,5 @@ voluptuous~=0.13.1
aiohttp~=3.9.3
zeroconf~=0.131.0
websockets~=12.0
pyUnfoldedCircleRemote~=0.6.1
pyUnfoldedCircleRemote~=0.6.5
ha-ffmpeg

0 comments on commit 69eebf3

Please sign in to comment.