Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlt8 committed Aug 16, 2023
2 parents c83829e + 05499de commit 9912ca0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,12 @@ You can then use the web interface at `http://localhost:5000` where localhost is

See [basic usage](#basic-usage) for additional information or visit the [wiki page](https://github.com/mrlt8/docker-wyze-bridge/wiki/Home-Assistant) for additional information on using the bridge as a Home Assistant Add-on.

## What's Changed in v2.3.14
## What's Changed in v2.3.15

NEW:
* PTZ controls in MQTT discovery as "cover"
* Add ffmpeg `filter_complex` config (#919)
* FIX: `caminfo` not found error.
* Update MediaMTX version from v0.23.8 to v1.0.0 (#956)


CHANGED:
* Adjust default bitrate for re-encoding to 3000k.
* Case sensitive FFMPEG_CMD (#736) Thanks @392media!
* `DEBUG_FFMPEG` is now `FFMPEG_LOGLEVEL` with customizable levels:
* `quiet`, `panic`, `fatal`, `error`, `warning`, `info`, `verbose`, `debug`.
* Defaults to `fatal`.
* Bump Wyze App version to v2.44.1.1 (#946)

[View previous changes](https://github.com/mrlt8/docker-wyze-bridge/releases)


Expand Down
2 changes: 1 addition & 1 deletion app/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION=2.3.14
MTX_TAG=0.23.8
MTX_TAG=1.0.0
IOS_VERSION=16.5
APP_VERSION=2.44.1.1
MTX_HLSVARIANT=fmp4
Expand Down
5 changes: 5 additions & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## What's Changed in v2.3.15

* FIX: `caminfo` not found error.
* Update MediaMTX version from v0.23.8 to v1.0.0 (#956)

## What's Changed in v2.3.14

NEW:
Expand Down
2 changes: 1 addition & 1 deletion app/wyzebridge/wyze_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def camera_control(
"last_photo": boa["last_photo"],
}
resp = {topic: cam_info}
if topic == "cruise_point":
elif topic == "cruise_point":
resp = {topic: pan_to_cruise_point(sess, cmd)}
else:
resp = send_tutk_msg(sess, cmd)
Expand Down

0 comments on commit 9912ca0

Please sign in to comment.