Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.10.3 #843

Merged
Merged
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.10.3

### Changes

-`@twilio/video-processors` has been upgraded to 2.1.0. This release fixes a bug where enabling virtual or blur background sometimes degraded local video, especially on low-powered Intel graphics cards.
- `twilio-video` has been upgraded to 2.28.1.

## 0.10.2

### Changes
Expand Down
34 changes: 18 additions & 16 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twilio-video-app-react",
"version": "0.10.2",
"version": "0.10.3",
"private": true,
"license": "Apache-2.0",
"dependencies": {
Expand All @@ -9,7 +9,7 @@
"@material-ui/lab": "^4.0.0-alpha.60",
"@twilio-labs/plugin-rtc": "^0.8.4",
"@twilio/conversations": "^2.1.0",
"@twilio/video-processors": "^2.0.0",
"@twilio/video-processors": "^2.1.0",
"@twilio/video-room-monitor": "^1.0.1",
"@types/d3-timer": "^1.0.9",
"@types/dotenv": "^8.2.0",
Expand Down Expand Up @@ -45,7 +45,7 @@
"swiper": "^8.1.5",
"ts-node": "^9.1.1",
"twilio": "^3.63.1",
"twilio-video": "^2.28.0",
"twilio-video": "^2.28.1",
"typescript": "^4.6.2"
},
"devDependencies": {
Expand Down Expand Up @@ -146,4 +146,4 @@
"enzyme-to-json/serializer"
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ export default function useBackgroundSettings(videoTrack: LocalVideoTrack | unde
return;
}

// Switch to 640x480 dimensions on desktop Chrome or browsers that
// do not support WebAssembly SIMD to achieve optimum performance.
// Switch to 640x480 dimensions on browsers that do not support
// WebAssembly SIMD to achieve optimum performance.
const processor = blurProcessor || virtualBackgroundProcessor;
// @ts-ignore
if (!processor._isSimdEnabled || isDesktopChrome) {
if (!processor._isSimdEnabled) {
await setCaptureConstraints();
}

Expand Down