Skip to content

Commit c5682ac

Browse files
authored
Merge pull request #35 from GetStream/release/v0.5.0
Upgrade package to v0.5.0
2 parents e534a3d + c28479b commit c5682ac

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
v0.5.0:
2+
3+
Fixes:
4+
* Fix null ref exception when previous dominant speaker is null
5+
6+
Improvements:
7+
* Add support for changing the camera device during the call
8+
* Add support for changing the microphone device during the call
9+
* Update DTOs to the latest OpenAPI spec
10+
11+
Sample Project
12+
* Fixes:
13+
* Improvements:
14+
* Implement showing dominant speaker
15+
* Update getting the demo credentials to the latest requirements
16+
17+
v0.0.1:
18+
19+
Initial release

Packages/StreamVideo/Runtime/Core/LowLevelClient/StreamVideoLowLevelClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ internal sealed class StreamVideoLowLevelClient : IStreamVideoLowLevelClient
6262
/// <summary>
6363
/// SDK Version number
6464
/// </summary>
65-
public static readonly Version SDKVersion = new Version(0, 1, 0);
65+
public static readonly Version SDKVersion = new Version(0, 5, 0);
6666

6767
/// <summary>
6868
/// Local user DTO - only available when the coordinator is connected

Packages/StreamVideo/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "com.stream.video",
3-
"version": "0.0.1",
3+
"version": "0.5.0",
44
"displayName": "Stream Video & Audio Chat SDK",
5-
"description": "This SDK allows you to very easily add audio and/or video communication to your project. Supported platorms: Android, IOS, Windows, MacOS.",
5+
"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.",
66
"unity": "2020.3",
77
"documentationUrl": "https://getstream.io/video/docs/unity/",
88
"licensesUrl": "https://github.com/GetStream/stream-video-unity/blob/main/LICENSE",
@@ -18,14 +18,13 @@
1818
],
1919
"samples": [
2020
{
21-
"displayName": "Video & Audio chat sample",
21+
"displayName": "Video & Audio chat example project",
2222
"description": "Sample project showing a video & audio chat",
2323
"path": "Samples~/VideoChat"
2424
}
2525
],
2626
"author": {
27-
"name": "Unity",
28-
"email": "[email protected]",
27+
"name": "Stream",
2928
"url": "https://getstream.io/"
3029
},
3130
"hideInEditor": false

0 commit comments

Comments
 (0)