Skip to content

Commit ddc8c23

Browse files
authored
release: 0.3.1 (#558)
1 parent d0438da commit ddc8c23

File tree

12 files changed

+21
-15
lines changed

12 files changed

+21
-15
lines changed

dogfooding/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies:
2828
share_plus: ^7.1.0
2929
shared_preferences: ^2.2.0
3030
stream_chat_flutter: ^8.0.0-beta.1
31-
stream_video_flutter: ^0.3.0
32-
stream_video_push_notification: ^0.3.0
31+
stream_video_flutter: ^0.3.1
32+
stream_video_push_notification: ^0.3.1
3333
uni_links: ^0.5.1
3434

3535
dev_dependencies:

packages/stream_video/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## Upcoming
1+
## 0.3.1
22

3+
* Important: Fixes crash for CallKit on iOS.
34
* Added support for SFU migration to improve video resilience.
5+
* Fixes for streaming flags in `CallState` (backstage, broadcasting, recording).
46

57
## 0.3.0
68

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file is generated. Do not manually edit.
22
/// Current package version.
3-
const String streamVideoVersion = '0.3.0';
3+
const String streamVideoVersion = '0.3.1';

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.3.0
4+
version: 0.3.1
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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## Upcoming
1+
## 0.3.1
22

3+
* Important: Fixes crash for CallKit on iOS.
34
* Added support for SFU migration to improve video resilience.
5+
* Fixes for streaming flags in `CallState` (backstage, broadcasting, recording).
46

57
## 0.3.0
68

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ dependencies:
2424
intl: ^0.18.1
2525
path_provider: ^2.1.0
2626
share_plus: ^7.1.0
27-
stream_video: ^0.3.0
28-
stream_video_flutter: ^0.3.0
27+
stream_video: ^0.3.1
28+
stream_video_flutter: ^0.3.1
2929

3030
dev_dependencies:
3131
build_runner: ^2.4.6

packages/stream_video_flutter/lib/src/call_controls/controls/add_reaction_option.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class _AddReactionOptionState extends State<AddReactionOption> {
6262
overlayEntry = OverlayEntry(
6363
builder: (context) {
6464
return Positioned(
65-
left: offset.dx,
65+
left: offset.dx - 16,
6666
bottom: renderBox.size.height + 16,
6767
child: Material(
6868
color: Colors.transparent,

packages/stream_video_flutter/lib/src/livestream/livestream_player.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import '../../stream_video_flutter.dart';
1010
/// play/pause the stream, live/backstage indicator, participant count,
1111
/// call duration, mute/unmute call, expand/contract livestream.
1212
class LivestreamPlayer extends StatefulWidget {
13-
1413
/// Creates a livestream player
1514
///
1615
/// * [call] is the livestream call intended to be viewed.

packages/stream_video_flutter/lib/src/livestream/livestream_toggle.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import '../theme/themes.dart';
77
/// Meant to stop all video and audio tracks locally - this is done through
88
/// the [onStateChanged] parameter in the implementation and not in the widget.
99
class LivestreamToggle extends StatelessWidget {
10-
1110
/// Creates a [LivestreamToggle].
1211
///
1312
/// [enabled] decides the icon to be displayed.

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.3.0
4+
version: 0.3.1
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
@@ -19,7 +19,7 @@ dependencies:
1919
flutter_webrtc: ^0.9.47
2020
plugin_platform_interface: ^2.1.7
2121
rate_limiter: ^1.0.0
22-
stream_video: ^0.3.0
22+
stream_video: ^0.3.1
2323
visibility_detector: ^0.4.0+2
2424

2525
dev_dependencies:

0 commit comments

Comments
 (0)