8000 release: 0.11.7. · The-Funk/flutter-webrtc@b999479 · GitHub
[go: up one dir, main page]

Skip to content

Commit b999479

Browse files
committed
release: 0.11.7.
1 parent af6595d commit b999479

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

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

33
--------------------------------------------
4+
[0.11.7] - 2024-09-04
5+
6+
* [Web] Bump dart_webrtc to 1.4.9.
7+
* [Web] Bump web version to 1.0.0.
8+
49
[0.11.6+hotfix.1] - 2024-08-07
510

611
* [iOS] Fixed PlatformView not rendering after resuming from background.

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Future<bool> startForegroundService() async {
2929
final androidConfig = FlutterBackgroundAndroidConfig(
3030
notificationTitle: 'Title of the notification',
3131
notificationText: 'Text of the notification',
32-
notificationImportance: AndroidNotificationImportance.Default,
32+
notificationImportance: AndroidNotificationImportance.normal,
3333
notificationIcon: AndroidResource(
3434
name: 'background_icon',
3535
defType: 'drawable'), // Default is ic_launcher from folder mipmap

example/lib/src/get_display_media_sample.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class _GetDisplayMediaSampleState extends State<GetDisplayMediaSample> {
6161
const androidConfig = FlutterBackgroundAndroidConfig(
6262
notificationTitle: 'Screen Sharing',
6363
notificationText: 'LiveKit Example is sharing the screen.',
64-
notificationImportance: AndroidNotificationImportance.Default,
64+
notificationImportance: AndroidNotificationImportance.normal,
6565
notificationIcon: AndroidResource(
6666
name: 'livekit_ic_launcher', defType: 'mipmap'),
6767
);

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: flutter_webrtc
22
description: Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3-
version: 0.11.6+hotfix.1
3+
version: 0.11.7
44
homepage: https://github.com/cloudwebrtc/flutter-webrtc
55
environment:
66
sdk: '>=3.3.0 <4.0.0'
77
flutter: '>=1.22.0'
88

99
dependencies:
1010
collection: ^1.17.0
11-
dart_webrtc: ^1.4.8
11+
dart_webrtc: ^1.4.9
1212
flutter:
1313
sdk: flutter
1414
path_provider: ^2.0.2
15-
web: ^0.5.1
15+
web: ^1.0.0
1616
webrtc_interface: ^1.2.0
1717

1818
dev_dependencies:

0 commit comments

Comments
 (0)
0