release: 1.1.9.

This commit is contained in:
cloudwebrtc
2022-11-28 11:19:31 +08:00
parent e0a721be69
commit 06783cad5c
6 changed files with 21 additions and 6 deletions
+5
View File
@@ -1,5 +1,10 @@
# CHANGELOG # CHANGELOG
## 1.1.9
* Bump flutter-webrtc to 0.9.17
* Enable BroadCastExtension for iOS in example.
## 1.1.8 ## 1.1.8
* Fix resume/full-reconnect. * Fix resume/full-reconnect.
+10
View File
@@ -171,6 +171,16 @@ class _ControlsWidgetState extends State<ControlsWidget> {
print('could not publish video: $e'); print('could not publish video: $e');
} }
} }
if (WebRTC.platformIsIOS) {
var track = await LocalVideoTrack.createScreenShareTrack(
const ScreenShareCaptureOptions(
useiOSBroadcastExtension: true,
maxFrameRate: 15.0,
),
);
await participant.publishVideoTrack(track);
return;
}
await participant.setScreenShareEnabled(true, captureScreenAudio: true); await participant.setScreenShareEnabled(true, captureScreenAudio: true);
} }
+2 -2
View File
@@ -225,7 +225,7 @@ packages:
name: flutter_webrtc name: flutter_webrtc
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.9.14" version: "0.9.17"
google_fonts: google_fonts:
dependency: "direct main" dependency: "direct main"
description: description:
@@ -274,7 +274,7 @@ packages:
path: ".." path: ".."
relative: true relative: true
source: path source: path
version: "1.1.7" version: "1.1.9"
logging: logging:
dependency: "direct main" dependency: "direct main"
description: description:
+1 -1
View File
@@ -5,7 +5,7 @@ import 'types/other.dart';
/// Main entry point to connect to a room. /// Main entry point to connect to a room.
/// {@category Room} /// {@category Room}
class LiveKitClient { class LiveKitClient {
static const version = '1.0.0'; static const version = '1.1.9';
/// Convenience method for connecting to a LiveKit server. /// Convenience method for connecting to a LiveKit server.
/// Returns a [Room] upon a successful connect or throws when it fails. /// Returns a [Room] upon a successful connect or throws when it fails.
+1 -1
View File
@@ -260,7 +260,7 @@ packages:
name: flutter_webrtc name: flutter_webrtc
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.9.14" version: "0.9.17"
glob: glob:
dependency: transitive dependency: transitive
description: description:
+2 -2
View File
@@ -1,7 +1,7 @@
name: livekit_client name: livekit_client
description: Flutter Client SDK for LiveKit. description: Flutter Client SDK for LiveKit.
Build real-time video and audio into your apps. Supports iOS, Android, and Web. Build real-time video and audio into your apps. Supports iOS, Android, and Web.
version: 1.1.8 version: 1.1.9
homepage: https://livekit.io homepage: https://livekit.io
environment: environment:
@@ -23,7 +23,7 @@ dependencies:
uuid: ^3.0.6 uuid: ^3.0.6
synchronized: ^3.0.0+3 synchronized: ^3.0.0+3
protobuf: ^2.1.0 protobuf: ^2.1.0
flutter_webrtc: 0.9.14 flutter_webrtc: 0.9.17
dart_webrtc: 1.0.11 dart_webrtc: 1.0.11
device_info_plus: ^6.0.0 device_info_plus: ^6.0.0
webrtc_interface: 1.0.10 webrtc_interface: 1.0.10