Skip to content

Commit eab1c3a

Browse files
authored
Revert "chore: prepare for new release." (#470)
This reverts commit 1079172.
1 parent 1079172 commit eab1c3a

File tree

17 files changed

+25
-25
lines changed

17 files changed

+25
-25
lines changed

dogfooding/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ dependencies:
2626
shared_preferences: ^2.2.0
2727
stream_chat_flutter: ^6.9.0
2828
stream_video: ^0.0.2
29-
stream_video_flutter: ^0.0.4
30-
stream_video_push_notification: ^0.0.4
29+
stream_video_flutter: ^0.0.3
30+
stream_video_push_notification: ^0.0.3
3131
uni_links: ^0.5.1
3232

3333
dev_dependencies:

packages/stream_video/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.0.3
1+
## Upcoming
22

33
* Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0
44

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.0.3';
3+
const String streamVideoVersion = '0.0.1+1';

packages/stream_video/pubspec.yaml

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

packages/stream_video_flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.0.4
1+
## Upcoming
22

33
* Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0
44

packages/stream_video_flutter/example/lib/proxy/proxy.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class ProxiedHttpOverrides extends HttpOverrides {
1414
..findProxy = (uri) {
1515
return _proxy.isNotEmpty ? 'PROXY $_proxy;' : 'DIRECT';
1616
}
17-
..badCertificateCallback =
18-
(X509Certificate cert, String host, int port) => Platform.isAndroid;
17+
..badCertificateCallback = (X509Certificate cert, String host, int port) => Platform.isAndroid;
1918
}
2019
}

packages/stream_video_flutter/example/lib/screen/home_tabs/call_text_field.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'dart:convert';
22
import 'dart:math' as math;
33

44
import 'package:flutter/material.dart';
5-
import 'package:stream_video_flutter/stream_video_flutter.dart';
5+
import 'package:stream_video/stream_video.dart';
66

77
class CallIdTextField extends StatelessWidget {
88
const CallIdTextField({

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ dependencies:
4040
share_plus: ^7.1.0
4141
device_info_plus: ^9.0.3
4242
intl: ^0.18.1
43-
stream_video_flutter: ^0.0.4
44-
stream_video_flutter_background: 0.0.2
43+
stream_video: ^0.0.2
44+
stream_video_flutter: ^0.0.3
45+
stream_video_flutter_background: 0.0.1
4546
envied: ^0.3.0+3
4647

4748
# The following adds the Cupertino Icons font to your application.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class LeaveCallOption extends StatelessWidget {
2828
iconColor: Colors.white,
2929
backgroundColor: Colors.red,
3030
onPressed: () {
31-
if (onLeaveCallTap != null) {
31+
if(onLeaveCallTap != null) {
3232
onLeaveCallTap!();
3333
} else {
3434
call.disconnect();

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ class ToggleRecordingOption extends StatelessWidget {
2727
final enabled = call.state.value.isRecording;
2828

2929
return CallControlOption(
30-
icon: enabled ? Icon(enabledRecordingIcon) : Icon(disabledRecordingIcon),
30+
icon:
31+
enabled ? Icon(enabledRecordingIcon) : Icon(disabledRecordingIcon),
3132
onPressed: () {
32-
if (!enabled) {
33+
if(!enabled) {
3334
call.startRecording();
3435
} else {
3536
call.stopRecording();

0 commit comments

Comments
 (0)