Skip to content

Commit

Permalink
v5.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
seydx committed Apr 17, 2022
1 parent 0bd58a1 commit 25d4a20
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 45 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

# v5.0.20 - 2022-04-17

## Other Changes
- Enabled Web Assembly for better streaming performance within web browser (camera.ui)
- Minor UI improvements (camera.ui)
- Changed to `@seydx/jsmpeg` (camera.ui)
- Bump dependencies

## Bugfixes
- Fixed an issue where 2-way audio did not work

# v5.0.19 - 2022-04-16

## Bugfixes
Expand Down
54 changes: 27 additions & 27 deletions homebridge-ui/ui/package-lock.json

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

10 changes: 5 additions & 5 deletions homebridge-ui/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"dependencies": {
"@mdi/js": "^6.6.96",
"jsmpeg-fast-player": "^0.2.0",
"vue": "^2.6.14",
"@seydx/jsmpeg": "^1.0.1",
"vue": "2.6.14",
"vuetify": "^2.6.4",
"vue-router": "^3.5.3"
"vue-router": "3.5.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.5.17",
Expand All @@ -23,8 +23,8 @@
"autoprefixer": "9.8.8",
"babel-eslint": "^10.1.0",
"core-js": "^3.21.1",
"eslint": "6.8.0",
"eslint-plugin-prettier": "3.4.0",
"eslint": "6.7.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-vue": "7.19.1",
"minify-css-string": "^1.0.0",
"postcss": "7.0.39",
Expand Down
2 changes: 1 addition & 1 deletion homebridge-ui/ui/src/views/Cameras.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</template>

<script>
import JSMpeg from 'jsmpeg-fast-player';
import JSMpeg from '@seydx/jsmpeg';
import JSMpegWritableSource from '@/common/jsmpeg-source';
const timeout = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-camera-ui",
"version": "5.0.19",
"version": "5.0.20",
"description": "User Interface for RTSP capable cameras with HSV support.",
"author": "SeydX (https://github.com/SeydX/homebridge-camera-ui)",
"scripts": {
Expand All @@ -14,7 +14,7 @@
"main": "index.js",
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"camera.ui": "^1.1.9",
"camera.ui": "^1.1.10",
"fs-extra": "10.0.1",
"pick-port": "^1.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/accessories/camera.js
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ export default class CameraDelegate {
ffmpegReturnArguments.push('-loglevel', 'verbose');
}

ffmpegArguments.push(
ffmpegReturnArguments.push(
'-protocol_whitelist',
'pipe,udp,rtp,file,crypto',
'-f',
Expand Down

0 comments on commit 25d4a20

Please sign in to comment.