File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
--------------------------------------------
4
+ [ 0.12.1] - 2024-10-21
5
+
6
+ * [ web] fix: add stub WebRTC.initialize for web.
7
+ * [ Docs] Fixing proguard rules link (#1686 )
8
+ * [ iOS/Android] feat: support unprocessed audio (#825 )
9
+
10
+ [ 0.12.0+hotfix.2] - 2024-10-20
11
+
4
12
[ 0.12.0+hotfix.1] - 2024-10-18
5
13
6
14
* [ macOS] fix compilation error for macOS.
Original file line number Diff line number Diff line change @@ -18,4 +18,7 @@ class WebRTC {
18
18
static Future <T ?> invokeMethod <T , P >(String methodName,
19
19
[dynamic param]) async =>
20
20
throw UnimplementedError ();
21
+
22
+ static Future <void > initialize ({Map <String , dynamic >? options}) async =>
23
+ throw UnimplementedError ('initialize is not supported on web' );
21
24
}
Original file line number Diff line number Diff line change 1
1
name : flutter_webrtc
2
2
description : Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3
- version : 0.12.0+hotfix. 1
3
+ version : 0.12.1
4
4
homepage : https://github.com/cloudwebrtc/flutter-webrtc
5
5
environment :
6
6
sdk : ' >=3.3.0 <4.0.0'
You can’t perform that action at this time.
0 commit comments