Skip to content

Commit 2edafba

Browse files
authored
Release v0.8.3 (#885)
1 parent 2301ecd commit 2edafba

File tree

11 files changed

+41
-17
lines changed

11 files changed

+41
-17
lines changed

dogfooding/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_dogfooding
2-
version: 1.8.2+1
2+
version: 1.8.3+1
33
publish_to: none
44
description: Flutter Dogfooding App to showcase Video SDK.
55

@@ -34,9 +34,9 @@ dependencies:
3434
share_plus: ^10.0.2
3535
shared_preferences: ^2.3.2
3636
stream_chat_flutter: ^9.4.0
37-
stream_video_flutter: ^0.8.2
38-
stream_video_push_notification: ^0.8.2
39-
stream_video_screen_sharing: ^0.8.2
37+
stream_video_flutter: ^0.8.3
38+
stream_video_push_notification: ^0.8.3
39+
stream_video_screen_sharing: ^0.8.3
4040

4141
dependency_overrides:
4242
just_audio_web: ^0.4.13

packages/stream_video/CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
## unreleased
1+
## 0.8.3
22

33
✅ Added
4-
* Added `CallParticipantState.audioLevels` with the 10 last audio levels of the participant.
5-
* Added `CallState.activeSpeakers` to get list of currently active speakers.
4+
* Introduced `CallParticipantState.audioLevels`, which stores the last 10 audio levels of a participant.
5+
* Added `CallState.activeSpeakers` to retrieve a list of currently active speakers.
6+
* Enhanced `observeCoreCallKitEvents()` in `StreamVideo` with a new `CallPreferences? preferences` parameter, allowing for configuration of the accepted call.
7+
* Implemented localization support for the SDK's UI components. See the [documentation](https://getstream.io/video/docs/flutter/localization/) for details.
8+
* Added the ability to customize the screen share selector on desktop devices. See the [updated documentation](https://getstream.io/video/docs/flutter/advanced/screen_sharing/) for details.
9+
10+
🐞 Fixed
11+
* Resolved various issues related to screen sharing on desktop devices.
612

713
## 0.8.2
814

packages/stream_video/lib/globals.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:meta/meta.dart';
22

33
const String streamSdkName = 'stream-flutter';
4-
const String streamVideoVersion = '0.8.2';
4+
const String streamVideoVersion = '0.8.3';
55
const String androidWebRTCVersion = 'libwebrtc-m125.6422.03';
66
const String iosWebRTCVersion = 'libwebrtc-m125.6422.06';
77

packages/stream_video/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video
22
description: The Official Low-level Client for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.2
4+
version: 0.8.3
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.8.3
2+
3+
✅ Added
4+
* Introduced `CallParticipantState.audioLevels`, which stores the last 10 audio levels of a participant.
5+
* Added `CallState.activeSpeakers` to retrieve a list of currently active speakers.
6+
* Enhanced `observeCoreCallKitEvents()` in `StreamVideo` with a new `CallPreferences? preferences` parameter, allowing for configuration of the accepted call.
7+
* Implemented localization support for the SDK's UI components. See the [documentation](https://getstream.io/video/docs/flutter/localization/) for details.
8+
* Added the ability to customize the screen share selector on desktop devices. See the [updated documentation](https://getstream.io/video/docs/flutter/advanced/screen_sharing/) for details.
9+
10+
🐞 Fixed
11+
* Resolved various issues related to screen sharing on desktop devices.
12+
113
## 0.8.2
214

315
✅ Added

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ dependencies:
2727
path_provider: ^2.1.0
2828
share_plus: ^10.0.2
2929
shared_preferences: ^2.2.0
30-
stream_video: ^0.8.2
31-
stream_video_flutter: ^0.8.2
32-
stream_video_push_notification: ^0.8.2
30+
stream_video: ^0.8.3
31+
stream_video_flutter: ^0.8.3
32+
stream_video_push_notification: ^0.8.3
3333
stream_webrtc_flutter: ^0.12.9+1
3434

3535
dependency_overrides:

packages/stream_video_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_flutter
22
description: The Official UI package for Stream Video, a service for building
33
video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.2
4+
version: 0.8.3
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -23,7 +23,7 @@ dependencies:
2323
permission_handler: ^11.3.1
2424
plugin_platform_interface: ^2.1.8
2525
rate_limiter: ^1.0.0
26-
stream_video: ^0.8.2
26+
stream_video: ^0.8.3
2727
stream_webrtc_flutter: ^0.12.9+1
2828
visibility_detector: ^0.4.0+2
2929

packages/stream_video_push_notification/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.3
2+
* Sync version with `stream_video_flutter` 0.8.3
3+
14
## 0.8.2
25
* Sync version with `stream_video_flutter` 0.8.2
36

packages/stream_video_push_notification/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: stream_video_push_notification
22
description: Adds push notification support for Stream Video, a service for
33
building video calls, audio rooms, and live-streaming applications.
4-
version: 0.8.2
4+
version: 0.8.3
55
homepage: https://getstream.io/video/
66
repository: https://github.com/GetStream/stream-video-flutter
77
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
@@ -21,7 +21,7 @@ dependencies:
2121
meta: ^1.9.1
2222
plugin_platform_interface: ^2.1.8
2323
rxdart: ^0.28.0
24-
stream_video: ^0.8.2
24+
stream_video: ^0.8.3
2525
uuid: ^4.2.1
2626
shared_preferences: ^2.3.2
2727
stream_webrtc_flutter: ^0.12.9+1

packages/stream_video_screen_sharing/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.3
2+
* Sync version with `stream_video_flutter` 0.8.3
3+
14
## 0.8.2
25
* Sync version with `stream_video_flutter` 0.8.2
36

0 commit comments

Comments
 (0)