Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/app-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
default: true

env:
FLUTTER_VERSION: "3.35.3"
FLUTTER_VERSION: "3.44.1"
FLUTTER_CHANNEL: stable
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
CREDENTIAL_FILE_CONTENT: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/legacy_version_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: legacy_version_analyze
env:
# Note: The versions below should be manually updated after a new stable
# version comes out.
flutter_version: "3.32.0"
flutter_version: "3.38.0"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stream_video_flutter_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stream_video_flutter_workflow

env:
FLUTTER_CHANNEL: stable
FLUTTER_VERSION: 3.35.3
FLUTTER_VERSION: 3.44.1

on:
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions dogfooding/lib/app/app_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:rxdart/rxdart.dart';
import 'package:stream_chat_flutter/stream_chat_flutter.dart' as chat;
import 'package:stream_video_flutter/stream_video_flutter.dart';
import 'package:stream_video_flutter/stream_video_flutter_l10n.dart';

Expand Down Expand Up @@ -282,6 +283,7 @@ class _StreamDogFoodingAppContentState
dragHandleColor: Colors.white,
),
extensions: <ThemeExtension<dynamic>>[
chat.StreamTheme.dark(),
Comment thread
coderabbitai[bot] marked this conversation as resolved.
StreamVideoTheme.dark().copyWith(
callControlsTheme: StreamCallControlsThemeData(
callReactions: const [
Expand Down
1 change: 0 additions & 1 deletion dogfooding/lib/router/router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ GoRouter initRouter(UserAuthController authNotifier) {
builder: (context, state, child) {
return StreamChat(
client: locator.get(),
streamChatThemeData: StreamChatThemeData.dark(),
child: child,
);
},
Expand Down
6 changes: 3 additions & 3 deletions dogfooding/lib/screens/call_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,10 @@ class ChatBottomSheet extends StatelessWidget {
Widget build(BuildContext context) {
return StreamChannel(
channel: channel,
child: const Column(
child: Column(
children: <Widget>[
Expanded(child: StreamMessageListView()),
StreamMessageInput(),
const Expanded(child: StreamMessageListView()),
StreamMessageComposer(),
],
),
);
Expand Down
11 changes: 6 additions & 5 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ publish_to: none
description: Flutter Dogfooding App to showcase Video SDK.

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
app_links: ^6.4.1
Expand All @@ -29,21 +29,22 @@ dependencies:
google_sign_in: ^7.2.0
http: ^1.5.0
mobile_scanner: ^7.1.0
package_info_plus: ^9.0.0
package_info_plus: ">=9.0.0 <11.0.0"
path_provider: ^2.1.5
permission_handler: ^12.0.1
qr_flutter: ^4.1.0
rxdart: ^0.28.0
share_plus: ^11.0.0
share_plus: ^13.0.0
shared_preferences: ^2.5.3
stream_chat_flutter: ^9.17.0
stream_chat_flutter: ^10.0.0
stream_video_filters: ^1.4.0
stream_video_flutter: ^1.4.0
stream_video_noise_cancellation: ^1.4.0
stream_video_push_notification: ^1.4.0
stream_video_screen_sharing: ^1.4.0

dependency_overrides:
file_picker: ^12.0.0-beta.5 # file_picker depends on win32 5.x, but package_info_plus win32 6.x, fixed in file_picker 12 (currently in beta)
stream_video:
path: ../packages/stream_video
stream_video_filters:
Expand Down
9 changes: 5 additions & 4 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ command:
bootstrap:
# Dart and Flutter environment used in the project.
environment:
sdk: ^3.8.0
sdk: ^3.10.0
# We are not using carat '^' syntax here because flutter don't follow semantic versioning.
flutter: ">=3.32.0"
flutter: ">=3.38.0"

# Dependencies used in the project.
dependencies:
dart_webrtc: ^1.5.3+hotfix.2
device_info_plus: ">=12.1.0 <14.0.0"
share_plus: ^11.0.0
stream_chat_flutter: ^9.17.0
package_info_plus: ">=9.0.0 <11.0.0"
share_plus: ^13.0.0
stream_chat_flutter: ^10.0.0
stream_webrtc_flutter: ^3.0.0
stream_video_flutter: ^1.4.0
stream_video_noise_cancellation: ^1.4.0
Expand Down
6 changes: 6 additions & 0 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Upcoming

### 🔄 Changed

- Increased minimum Flutter version to 3.38.0.

## 1.4.0

Each call now owns an isolated native `PeerConnectionFactory`. This fixes cross-call audio interference, sibling-call microphone capture loss, and noise cancellation failing to engage during lobby preview.
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
async: ^2.12.0
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_filters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Upcoming
* Increased minimum Flutter version to 3.38.0.

## 1.4.0
* Sync version with `stream_video_flutter` 1.4.0

Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_filters/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
flutter:
Expand Down
6 changes: 6 additions & 0 deletions packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Upcoming

### 🔄 Changed

- Increased minimum Flutter version to 3.38.0.

## 1.4.0

Each call now owns an isolated native `PeerConnectionFactory`. This fixes cross-call audio interference, sibling-call microphone capture loss, and noise cancellation failing to engage during lobby preview.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down
6 changes: 3 additions & 3 deletions packages/stream_video_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.1+1

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
cupertino_icons: ^1.0.5
Expand All @@ -26,7 +26,7 @@ dependencies:
intl: ^0.20.0
path_provider: ^2.1.0
rxdart: ^0.28.0
share_plus: ^11.0.0
share_plus: ^13.0.0
shared_preferences: ^2.5.3
stream_video: ^1.4.0
stream_video_flutter: ^1.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
cached_network_image: ^3.4.1
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_noise_cancellation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Upcoming
* Increased minimum Flutter version to 3.38.0.

## 1.4.0
* Sync version with `stream_video_flutter` 1.4.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: "none"
version: 0.1.0

environment:
sdk: ^3.8.0
sdk: ^3.10.0

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_noise_cancellation/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
flutter:
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_push_notification/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Upcoming
* Increased minimum Flutter version to 3.38.0.

## 1.4.0
* Sync version with `stream_video_flutter` 1.4.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: "none"
version: 0.1.0

environment:
sdk: ^3.8.0
sdk: ^3.10.0

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_push_notification/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
collection: ^1.19.1
Expand Down
3 changes: 3 additions & 0 deletions packages/stream_video_screen_sharing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Upcoming
* Increased minimum Flutter version to 3.38.0.

## 1.4.0
* Sync version with `stream_video_flutter` 1.4.0

Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_screen_sharing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues

environment:
sdk: ^3.8.0
flutter: ">=3.32.0"
sdk: ^3.10.0
flutter: ">=3.38.0"

dependencies:
flutter:
Expand Down
Loading