Skip to content
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.8.12:

- Better handling of `LeaveCallAsync`. This should solve the "`LeaveCallAsync` takes a long time sometimes"
- Respect video resolution set via SelectDevice. Previously, the broadcast video resolution was fixed.
- Potential crash fix in the native plugin
- Improvement to the broadcasted video handling - this can potentially improve video performance for watching users

0.8.11:

- Fix `NullReferenceException` in `SubscribeToTracksAsync`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace StreamVideo.Core.LowLevelClient
{
internal sealed class SdkVersionWrapper
{
public static readonly Version SDKVersion = new Version(0, 8, 11);
public static readonly Version SDKVersion = new Version(0, 8, 12);
}
}
2 changes: 1 addition & 1 deletion Packages/StreamVideo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io.getstream.video",
"version": "0.8.11",
"version": "0.8.12",
"displayName": "Stream Video & Audio Chat SDK",
"description": "This SDK lets you easily add audio and video communication to your project. You can build anything from spatial Audio chats to fully blown Video Calling apps. Supported platforms: Android, IOS, Windows, MacOS.",
"unity": "2020.3",
Expand Down
Loading