Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,*.svg,*.css,.codespellrc
check-hidden = true
# ignore-regex =
ignore-words-list = wyze,imgage,hass,medias
25 changes: 25 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Annotate locations with typos
uses: codespell-project/codespell-problem-matcher@v1
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Simplify default credentials for the WebUI:
- This will not affect users who are setting their own `WB_PASSWORD` and `WB_API`.
- Default `WB_PASSWORD` will now be derived from the username part of the Wyze email address instead of using a randomly generated password.
- Example: For the email address `[email protected]`, the `WB_PASSWORD` will be `john123`.
- Default `WB_API` will be based on the wyze account for persistance.
- Default `WB_API` will be based on the wyze account for persistence.

### Stream Authentication

Expand Down
2 changes: 1 addition & 1 deletion app/wyzecam/iotc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class WyzeIOTC:
:vartype udp_port: int
:var max_num_av_channels: the maximum number of simultaneous sessions this object supports.
:vartype max_num_av_channels: int
:var version: the version of the underyling `tutk_platform_lib`
:var version: the version of the underlying `tutk_platform_lib`
"""

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion app/wyzecam/tutk/tutk.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ class SInfoStructEx(FormattedStructure):

class FrameInfoStruct(FormattedStructure):
"""
A struct recieved on every video frame, with lots of useful information
A struct received on every video frame, with lots of useful information
about the frame sent by the camera.

:var codec_id: 78: h264 80: h265
Expand Down
4 changes: 2 additions & 2 deletions app/wyzecam/tutk/tutk_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def __init__(
Constructs a new K10002ConnectAuth message

:param challenge_response: the xxtea-encrypted response to the challenge bytes
recieved as part of message 10001.
received as part of message 10001.
:param mac: the mac address of the camera
:param video: True if we wish to start streaming video after authentication is successful.
:param audio: True if we wish to start streaming audio after authentication is successful.
Expand Down Expand Up @@ -259,7 +259,7 @@ def __init__(
Constructs a new K10008ConnectAuth message

:param challenge_response: the xxtea-encrypted response to the challenge bytes
recieved as part of message 10001.
received as part of message 10001.
:param phone_id: the phone id of the client
:param open_userid: the open_user_id associated with the user authenticating.
:param video: True if we wish to start streaming video after authentication is successful.
Expand Down
2 changes: 1 addition & 1 deletion home_assistant/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Simplify default credentials for the WebUI:
- This will not affect users who are setting their own `WB_PASSWORD` and `WB_API`.
- Default `WB_PASSWORD` will now be derived from the username part of the Wyze email address instead of using a randomly generated password.
- Example: For the email address `[email protected]`, the `WB_PASSWORD` will be `john123`.
- Default `WB_API` will be based on the wyze account for persistance.
- Default `WB_API` will be based on the wyze account for persistence.

### Stream Authentication

Expand Down
4 changes: 2 additions & 2 deletions unraid/docker-wyze-bridge.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</Branch>
<Branch>
<Tag>latest-hw</Tag>
<TagDescription>Latest stable release for amd64 with additinal drivers for harware accelerated encoding.</TagDescription>
<TagDescription>Latest stable release for amd64 with additional drivers for hardware accelerated encoding.</TagDescription>
</Branch>
<Branch>
<Tag>latest-qsv</Tag>
<TagDescription>Latest stable release for amd64 with additinal drivers for QSV accelerated encoding.</TagDescription>
<TagDescription>Latest stable release for amd64 with additional drivers for QSV accelerated encoding.</TagDescription>
</Branch>
<Branch>
<Tag>dev</Tag>
Expand Down