Skip to content

Commit

Permalink
v5.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
seydx committed Apr 24, 2022
1 parent 4d91ba3 commit e5b304f
Show file tree
Hide file tree
Showing 8 changed files with 119 additions and 53 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# Changelog
All notable changes to this project will be documented in this file.

# v5.0.25 - 2022-04-24

## Notable Changes
- **Config:**
- Added `"motionDelay"` parameter to the camera block. Motion Delay: The number of seconds to wait to trigger the motion sensor after a motion event is received from e.g. MQTT, SMTP, FTP or HTTP (this can be useful if you use an external motion sensor and the camera feed lags several seconds behind the event).

## Other Changes
- Minor UI improvements (camera.ui)
- Bump dependencies

## Bugfixes
- Fixed an issue where replacing deprecated ffmpeg args failed due to invalid ffmpeg version (camera.ui)

# v5.0.24 - 2022-04-23

## Bugfixes
- Fixed an issue where you could no longer see the camera streams via `homebridge-config-ui-x`
- Fixed an issue where camera streams could no longer be displayed via "homebridge-config-ui-x".

# v5.0.23 - 2022-04-23

Expand Down
11 changes: 11 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,16 @@
"functionBody": "return model.cameras[arrayIndices[0]].useInterfaceTimer === false"
}
},
"motionDelay": {
"title": "Motion Delay",
"type": "integer",
"minimum": 0,
"maximum": 10,
"description": "The number of seconds to wait to trigger the motion sensor after a motion event is received from e.g. MQTT, SMTP, FTP or HTTP (this can be useful if you use an external motion sensor and the camera feed lags several seconds behind the event)",
"condition": {
"functionBody": "return model.cameras[arrayIndices[0]].useInterfaceTimer === false"
}
},
"motionDoorbell": {
"title": "Trigger Doorbell with Motion",
"type": "boolean",
Expand Down Expand Up @@ -832,6 +842,7 @@
"cameras[].switches",
"cameras[].useInterfaceTimer",
"cameras[].motionTimeout",
"cameras[].motionDelay",
"cameras[].motionDoorbell",
"cameras[].excludeSwitch",
"cameras[].privacySwitch"
Expand Down
1 change: 1 addition & 0 deletions example-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
"doorbell": true,
"switches": true,
"motionTimeout": 15,
"motionDelay": 5,
"unbridge": true,
"hsv": true,
"prebuffering": true,
Expand Down
14 changes: 7 additions & 7 deletions homebridge-ui/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion homebridge-ui/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@vue/eslint-config-prettier": "6.0.0",
"autoprefixer": "9.8.8",
"babel-eslint": "^10.1.0",
"core-js": "^3.21.1",
"core-js": "^3.22.2",
"eslint": "6.7.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-vue": "7.19.1",
Expand Down
Loading

0 comments on commit e5b304f

Please sign in to comment.