Skip to content

Commit a4c1ec9

Browse files
authored
Release v0.9.3 (#963)
* Release v0.9.3 * tweak for duration stream
1 parent a90edcd commit a4c1ec9

File tree

17 files changed

+55
-31
lines changed

17 files changed

+55
-31
lines changed

dogfooding/pubspec.yaml

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

@@ -37,10 +37,10 @@ dependencies:
3737
share_plus: ^11.0.0
3838
shared_preferences: ^2.3.2
3939
stream_chat_flutter: ^9.8.0
40-
stream_video_flutter: ^0.9.2
41-
stream_video_push_notification: ^0.9.2
42-
stream_video_screen_sharing: ^0.9.2
43-
stream_video_noise_cancellation: ^0.9.2
40+
stream_video_flutter: ^0.9.3
41+
stream_video_push_notification: ^0.9.3
42+
stream_video_screen_sharing: ^0.9.3
43+
stream_video_noise_cancellation: ^0.9.3
4444

4545
dependency_overrides:
4646
just_audio_web: ^0.4.13

melos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ command:
1818

1919
# Dependencies used in the project.
2020
dependencies:
21-
dart_webrtc: ^1.5.3
21+
dart_webrtc: ^1.5.3+hotfix.2
2222
device_info_plus: ">=10.1.2 <12.0.0"
2323
share_plus: ^11.0.0
2424
stream_chat_flutter: ^9.8.0
25-
stream_webrtc_flutter: ^1.0.3
25+
stream_webrtc_flutter: ^1.0.5
2626

2727
scripts:
2828
postclean:

packages/stream_video/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
## Unreleased
1+
## 0.9.3
22

33
✅ Added
4-
* Added `callDurationSecondsStream` to the `Call` class, providing a Stream<int> that emits the current call duration in seconds.
5-
* Added `createdByUser` to the `CallState`
4+
* Introduced `callDurationStream` to the `Call` class. A `Stream<Duration>` that emits the current call duration.
5+
* Added `createdByUser` property to the `CallState` for better tracking of the initiating user.
6+
7+
🐞 Fixed
8+
* Resolved an issue where participants’ tracks would briefly disappear ("blink") or change location when many participants are in the call.
9+
* Fixed a bug where subsequent screen sharing sessions did not end properly when terminated via the browser UI.
610

711
## 0.9.2
812

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.9.2';
4+
const String streamVideoVersion = '0.9.3';
55
const String openapiModelsVersion = '167.9.1';
66
const String protocolModelsVersion = '1.35.0';
77
const String androidWebRTCVersion = '1.3.8';

packages/stream_video/lib/src/call/state/call_state_notifier.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class CallStateNotifier extends StateNotifier<CallState>
5252
}
5353

5454
void _setupDurationTimer() {
55-
if (state.endedAt != null || state.liveEndedAt != null) {
55+
if (state.liveEndedAt != null) {
5656
_durationTimer?.cancel();
5757
_durationTimer = null;
5858
return;

packages/stream_video/pubspec.yaml

Lines changed: 3 additions & 3 deletions
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.9.2
4+
version: 0.9.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
@@ -15,7 +15,7 @@ dependencies:
1515
battery_plus: ^6.2.0
1616
collection: ^1.18.0
1717
connectivity_plus: ^6.0.4
18-
dart_webrtc: ^1.5.3
18+
dart_webrtc: ^1.5.3+hotfix.2
1919
device_info_plus: ">=10.1.2 <12.0.0"
2020
equatable: ^2.0.5
2121
fixnum: ^1.1.0
@@ -31,7 +31,7 @@ dependencies:
3131
rxdart: ^0.28.0
3232
sdp_transform: ^0.3.2
3333
state_notifier: ^1.0.0
34-
stream_webrtc_flutter: ^1.0.3
34+
stream_webrtc_flutter: ^1.0.5
3535
synchronized: ^3.1.0
3636
system_info2: ^4.0.0
3737
tart: ^0.5.1

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.9.3
2+
3+
✅ Added
4+
* Introduced `callDurationStream` to the `Call` class. A `Stream<Duration>` that emits the current call duration.
5+
* Added `createdByUser` property to the `CallState` for better tracking of the initiating user.
6+
* Added `livestreamControlsBuilder` parameter to `LivestreamPlayer` allowing customisation of controls panel.
7+
8+
🐞 Fixed
9+
* Resolved an issue where participants’ tracks would briefly disappear ("blink") or change location when many participants are in the call.
10+
* Fixed a bug where subsequent screen sharing sessions did not end properly when terminated via the browser UI.
11+
112
## 0.9.2
213

314
🐞 Fixed

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ dependencies:
2727
path_provider: ^2.1.0
2828
share_plus: ^11.0.0
2929
shared_preferences: ^2.2.0
30-
stream_video: ^0.9.2
31-
stream_video_flutter: ^0.9.2
32-
stream_video_push_notification: ^0.9.2
33-
stream_webrtc_flutter: ^1.0.3
30+
stream_video: ^0.9.3
31+
stream_video_flutter: ^0.9.3
32+
stream_video_push_notification: ^0.9.3
33+
stream_webrtc_flutter: ^1.0.5
3434

3535
dependency_overrides:
3636
stream_video:

packages/stream_video_flutter/ios/stream_video_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'stream_video_flutter'
7-
s.version = '0.9.1'
7+
s.version = '0.9.3'
88
s.summary = 'Official Flutter Plugin for Stream Video.'
99
s.description = <<-DESC
1010
Official Flutter Plugin for Stream Video..

packages/stream_video_flutter/pubspec.yaml

Lines changed: 3 additions & 3 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.9.2
4+
version: 0.9.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
@@ -22,8 +22,8 @@ dependencies:
2222
permission_handler: ^12.0.0+1
2323
plugin_platform_interface: ^2.1.8
2424
rate_limiter: ^1.0.0
25-
stream_video: ^0.9.2
26-
stream_webrtc_flutter: ^1.0.3
25+
stream_video: ^0.9.3
26+
stream_webrtc_flutter: ^1.0.5
2727
visibility_detector: ^0.4.0+2
2828

2929
dev_dependencies:

0 commit comments

Comments
 (0)