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

- Added `participant.IsSpeakingChanged` and `participant.AudioLevelChanged` events to notify when the participant starts/stops speaking or when the volume changes

0.8.21:

- Added an option to mute an audio track locally. This mute is applied only to the current audio track on the local device. Note that a new audio track instance is created each time the same user leaves and rejoins the call. Therefore, it’s up to the integrator to cache the mute state and reapply it whenever the participant joins and adds an audio track. An example of caching can be found in this PR: https://github.com/GetStream/stream-video-unity/pull/203
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, 21);
public static readonly Version SDKVersion = new Version(0, 8, 22);
}
}
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.21",
"version": "0.8.22",
"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