Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nto alpha
  • Loading branch information
fuatakgun committed Jan 9, 2023
2 parents 1c092e7 + e8f1020 commit 5b01b07
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ A clear and concise description of what you expected to happen.
Go to Settings -> System -> Repairs -> Click on 3 dots (...) -> System Information and get Version and Installation Type to below fields;
- Home Assistant Installation Type (OS - Supvervised - Core):
- Home Assistant Core Version:
- Eufy Security Add-on Version:
- Eufy Security Integration Version:

Hardware Information;
- Camera Model:
Expand All @@ -41,7 +43,7 @@ Hardware Information;


- Debug Logs from Home Assistant (https://github.com/fuatakgun/eufy_security/discussions/624)

-

- Logs from Eufy Security Add-on (either from Add-ons page of Home Assistant or Docker output):

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- name: Gets semantic release info
id: semantic_release_info
uses: jossef/action-semantic-release-info@v1
uses: jossef/action-semantic-release-info@v2
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Update Version and Commit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ async def connect(self):

async def disconnect(self):
"""Close web socket connection"""
await self.socket.close()
self.socket = None
self.task.cancel()
self.task = None
if self.socket is not None:
await self.socket.close()
self.socket = None
if self.task is not None:
self.task.cancel()
self.task = None

async def _on_open(self) -> None:
if self.open_callback is not None:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/eufy_security/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"issue_tracker": "https://github.com/fuatakgun/eufy_security/issues",
"dependencies": ["ffmpeg", "stream"],
"config_flow": true,
"version": "6.1.0",
"version": "6.1.1",
"codeowners": ["@fuatakgun"],
"requirements": ["websocket-client==1.1.0", "aiortsp==1.3.6"],
"iot_class": "cloud_push",
Expand Down

0 comments on commit 5b01b07

Please sign in to comment.