From c28479bc24053aab11658bdb05c2221d1fa1e000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sierpi=C5=84ski?= <33436839+sierpinskid@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:42:06 +0100 Subject: [PATCH] Upgrade package to v0.5.0 --- CHANGELOG.md | 19 +++++++++++++++++++ .../StreamVideoLowLevelClient.cs | 2 +- Packages/StreamVideo/package.json | 9 ++++----- 3 files changed, 24 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..1e0da029 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +v0.5.0: + +Fixes: +* Fix null ref exception when previous dominant speaker is null + +Improvements: +* Add support for changing the camera device during the call +* Add support for changing the microphone device during the call +* Update DTOs to the latest OpenAPI spec + +Sample Project +* Fixes: +* Improvements: + * Implement showing dominant speaker + * Update getting the demo credentials to the latest requirements + +v0.0.1: + +Initial release \ No newline at end of file diff --git a/Packages/StreamVideo/Runtime/Core/LowLevelClient/StreamVideoLowLevelClient.cs b/Packages/StreamVideo/Runtime/Core/LowLevelClient/StreamVideoLowLevelClient.cs index 83633840..335a84dd 100644 --- a/Packages/StreamVideo/Runtime/Core/LowLevelClient/StreamVideoLowLevelClient.cs +++ b/Packages/StreamVideo/Runtime/Core/LowLevelClient/StreamVideoLowLevelClient.cs @@ -59,7 +59,7 @@ internal sealed class StreamVideoLowLevelClient : IStreamVideoLowLevelClient /// /// SDK Version number /// - public static readonly Version SDKVersion = new Version(0, 1, 0); + public static readonly Version SDKVersion = new Version(0, 5, 0); /// /// Local user DTO - only available when the coordinator is connected diff --git a/Packages/StreamVideo/package.json b/Packages/StreamVideo/package.json index e2ead5a8..ed57355d 100644 --- a/Packages/StreamVideo/package.json +++ b/Packages/StreamVideo/package.json @@ -1,8 +1,8 @@ { "name": "com.stream.video", - "version": "0.0.1", + "version": "0.5.0", "displayName": "Stream Video & Audio Chat SDK", - "description": "This SDK allows you to very easily add audio and/or video communication to your project. Supported platorms: Android, IOS, Windows, MacOS.", + "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", "documentationUrl": "https://getstream.io/video/docs/unity/", "licensesUrl": "https://github.com/GetStream/stream-video-unity/blob/main/LICENSE", @@ -18,14 +18,13 @@ ], "samples": [ { - "displayName": "Video & Audio chat sample", + "displayName": "Video & Audio chat example project", "description": "Sample project showing a video & audio chat", "path": "Samples~/VideoChat" } ], "author": { - "name": "Unity", - "email": "unity@example.com", + "name": "Stream", "url": "https://getstream.io/" }, "hideInEditor": false