Skip to content

Commit afc4e33

Browse files
authored
release: 2.4.5. (#765)
1 parent a700117 commit afc4e33

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 2.4.5
4+
5+
* feat: noise filter for flutter web. (#762)
6+
37
## 2.4.4
48

59
* feat: data stream

ios/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '2.4.4'
3+
s.version = '2.4.5'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

lib/src/livekit.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import 'support/native.dart';
2020
/// Main entry point to connect to a room.
2121
/// {@category Room}
2222
class LiveKitClient {
23-
static const version = '2.4.4';
23+
static const version = '2.4.5';
2424

2525
/// Initialize the WebRTC plugin. If this is not manually called, will be
2626
/// initialized with default settings.

lib/src/track/local/local.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ abstract class LocalTrack extends Track {
268268
await _processor!.init(processorOptions);
269269

270270
if (_processor?.processedTrack != null) {
271-
setProcessedTrack(processor!.processedTrack!);
271+
setProcessedTrack(processor.processedTrack!);
272272
}
273273

274274
logger.fine('processor initialized');

lib/src/track/track.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ abstract class Track extends DisposableChangeNotifier
139139
await mediaStreamTrack.stop();
140140
}
141141

142+
if (_originalTrack != null) {
143+
await _originalTrack?.stop();
144+
}
145+
142146
_active = false;
143147
return true;
144148
}

macos/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '2.4.4'
3+
s.version = '2.4.5'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
name: livekit_client
1616
description: Flutter Client SDK for LiveKit.
1717
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
18-
version: 2.4.4
18+
version: 2.4.5
1919
homepage: https://github.com/livekit/client-sdk-flutter
2020

2121
environment:

0 commit comments

Comments
 (0)