Skip to content

Commit

Permalink
0.10.3 (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
manjeshbhargav committed Mar 27, 2024
1 parent c646adc commit 48e604e
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 23 deletions.
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

0 comments on commit 48e604e

Please sign in to comment.