Skip to content
Merged
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
12 changes: 6 additions & 6 deletions dogfooding/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutter_dogfooding
version: 2.4.1+1
version: 2.4.2+1
publish_to: none
description: Flutter Dogfooding App to showcase Video SDK.

Expand Down Expand Up @@ -39,11 +39,11 @@ dependencies:
share_plus: ^13.0.0
shared_preferences: ^2.5.3
stream_chat_flutter: ^10.0.0
stream_video_filters: ^1.4.1
stream_video_flutter: ^1.4.1
stream_video_noise_cancellation: ^1.4.1
stream_video_push_notification: ^1.4.1
stream_video_screen_sharing: ^1.4.1
stream_video_filters: ^1.4.2
stream_video_flutter: ^1.4.2
stream_video_noise_cancellation: ^1.4.2
stream_video_push_notification: ^1.4.2
stream_video_screen_sharing: ^1.4.2

dev_dependencies:
build_runner: ^2.4.6
Expand Down
10 changes: 5 additions & 5 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
## Upcoming
## 1.4.2

### ✅ Added

- [iOS] `Call.state.audioOutputDevice` now stays in sync with the active native audio route when the output changes outside of `Call.setAudioOutputDevice` (e.g. via the native route-selection UI, or when the system re-routes on device connect/disconnect).
- Added client-side call join telemetry (`ClientEventReporter`).

### 🔄 Changed

- Increased minimum Flutter version to 3.38.1.

### 🐞 Fixed

- Fixed connection quality indicator blanking after reconnect.
- Fixed SFU stats not being flushed on call end.

## 1.4.1

### 🔄 Changed

- Increased minimum Flutter version to 3.38.0.

### 🐞 Fixed

- Fixed an issue where ringing a member during an ongoing call could prematurely end the call if they declined.
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/lib/globals.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'protobuf/video/sfu/models/models.pb.dart';
import 'src/video_environment_manager.dart';

const String streamSdkName = 'stream-flutter';
const String streamVideoVersion = '1.4.1';
const String streamVideoVersion = '1.4.2';
const String openapiModelsVersion = '225.14.0';
const String protocolModelsVersion = '1.48.0';
const String androidWebRTCVersion = webrtc.androidWebRTCVersion;
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_video/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: stream_video
description: The Official Low-level Client for Stream Video, a service for
building video calls, audio rooms, and live-streaming applications.
version: 1.4.1
version: 1.4.2
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand Down
53 changes: 35 additions & 18 deletions packages/stream_video_filters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,52 +1,69 @@
## Upcoming
* Increased minimum Flutter version to 3.38.0.
## 1.4.2

- Increased minimum Flutter version to 3.38.1.

## 1.4.1
* Sync version with `stream_video_flutter` 1.4.1

- Sync version with `stream_video_flutter` 1.4.1

## 1.4.0
* Sync version with `stream_video_flutter` 1.4.0

- Sync version with `stream_video_flutter` 1.4.0

## 1.3.3
* Sync version with `stream_video_flutter` 1.3.3

- Sync version with `stream_video_flutter` 1.3.3

## 1.3.2
* Sync version with `stream_video_flutter` 1.3.2

- Sync version with `stream_video_flutter` 1.3.2

## 1.3.1
* Sync version with `stream_video_flutter` 1.3.1

- Sync version with `stream_video_flutter` 1.3.1

## 1.3.0
* Sync version with `stream_video_flutter` 1.3.0

- Sync version with `stream_video_flutter` 1.3.0

## 1.2.4
* Sync version with `stream_video_flutter` 1.2.4

- Sync version with `stream_video_flutter` 1.2.4

## 1.2.3
* Sync version with `stream_video_flutter` 1.2.3

- Sync version with `stream_video_flutter` 1.2.3

## 1.2.2
* Sync version with `stream_video_flutter` 1.2.2

- Sync version with `stream_video_flutter` 1.2.2

## 1.2.1
* Sync version with `stream_video_flutter` 1.2.1

- Sync version with `stream_video_flutter` 1.2.1

## 1.2.0
* Fixed unnecessary video filter reapplication when camera track is disabled.

- Fixed unnecessary video filter reapplication when camera track is disabled.

## 1.1.0
* Sync version with `stream_video_flutter` 1.1.0

- Sync version with `stream_video_flutter` 1.1.0

## 1.0.2
* Sync version with `stream_video_flutter` 1.0.2

- Sync version with `stream_video_flutter` 1.0.2

## 1.0.1
* Sync version with `stream_video_flutter` 1.0.1

- Sync version with `stream_video_flutter` 1.0.1

## 1.0.0

✅ Added
* Extracted video filters from `stream_video_flutter` package. To apply filters follow the [documentation](https://getstream.io/video/docs/flutter/guides/noise-cancellation/).

- Extracted video filters from `stream_video_flutter` package. To apply filters follow the [documentation](https://getstream.io/video/docs/flutter/guides/noise-cancellation/).

✨ Improvements
- [Android] Enhanced video filter performance to deliver smoother frame rates during application.

- [Android] Enhanced video filter performance to deliver smoother frame rates during application.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'stream_video_filters'
s.version = '1.4.1'
s.version = '1.4.2'
s.summary = 'Official Video Filters Plugin for Stream Video.'
s.description = <<-DESC
Official Video Filters Plugin for Stream Video.
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_filters/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: stream_video_filters
description: The Official package for Stream Video, providing video filters
feature for video calls.
version: 1.4.1
version: 1.4.2
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -16,7 +16,7 @@ dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
stream_video: ^1.4.1
stream_video: ^1.4.2
stream_webrtc_flutter: ^3.0.1

dev_dependencies:
Expand Down
6 changes: 4 additions & 2 deletions packages/stream_video_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
## Upcoming
## 1.4.2

### ✅ Added

- Added `VideoFit.adaptive`, which picks between `cover` and `contain` based on the video's own orientation: landscape/square video fills the tile while portrait/tall video is letterboxed so the whole frame stays visible.
- [iOS] `Call.state.audioOutputDevice` now stays in sync with the active native audio route when the output changes outside of `Call.setAudioOutputDevice` (e.g. via the native route-selection UI, or when the system re-routes on device connect/disconnect).
- Added client-side call join telemetry (`ClientEventReporter`).

### 🔄 Changed

- Increased minimum Flutter version to 3.38.0.
- Increased minimum Flutter version to 3.38.1.
- Participant video fit now defaults per-platform when not explicitly set: `VideoFit.adaptive` on web and desktop (so portrait feeds such as phone cameras are shown in full instead of being cropped) and `VideoFit.cover` on mobile. Set `videoFit` explicitly on `StreamCallParticipantThemeData` (or the renderer widgets) to override.

## 1.4.1
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ dependencies:
rxdart: ^0.28.0
share_plus: ^13.0.0
shared_preferences: ^2.5.3
stream_video: ^1.4.1
stream_video_flutter: ^1.4.1
stream_video: ^1.4.2
stream_video_flutter: ^1.4.2
stream_webrtc_flutter: ^3.0.1

dev_dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'stream_video_flutter'
s.version = '1.4.1'
s.version = '1.4.2'
s.summary = 'Official Flutter Plugin for Stream Video.'
s.description = <<-DESC
Official Flutter Plugin for Stream Video..
Expand Down
4 changes: 2 additions & 2 deletions packages/stream_video_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: stream_video_flutter
description: The Official UI package for Stream Video, a service for building
video calls, audio rooms, and live-streaming applications.
version: 1.4.1
version: 1.4.2
homepage: https://getstream.io/video/
repository: https://github.com/GetStream/stream-video-flutter
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
Expand All @@ -26,7 +26,7 @@ dependencies:
plugin_platform_interface: ^2.1.8
rate_limiter: ^1.0.0
rxdart: ^0.28.0
stream_video: ^1.4.1
stream_video: ^1.4.2
stream_webrtc_flutter: ^3.0.1
visibility_detector: ^0.4.0+2

Expand Down
Loading
Loading