File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
--------------------------------------------
4
+ [ 1.0.11] - 2022-11-12
5
+
6
+ * Change MediaStream.clone to async.
7
+
4
8
[ 1.0.10] - 2022-11-02
5
9
6
10
* Update MediaRecorder interface.
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class MediaStreamWeb extends MediaStream {
58
58
bool ? get active => jsStream.active;
59
59
60
60
@override
61
- MediaStream clone () {
61
+ Future < MediaStream > clone () async {
62
62
return MediaStreamWeb (jsStream.clone (), ownerTag);
63
63
}
64
64
}
Original file line number Diff line number Diff line change 1
1
name : dart_webrtc
2
2
description : Use the dart/js library to re-wrap the webrtc js interface of the browser, to adapted common browsers.
3
- version : 1.0.10
3
+ version : 1.0.11
4
4
homepage : https://github.com/flutter-webrtc/dart-webrtc
5
5
6
6
environment :
7
7
sdk : ' >=2.13.0 <3.0.0'
8
8
9
9
dependencies :
10
- webrtc_interface : ^1.0.9
10
+ webrtc_interface : ^1.0.10
11
11
12
12
dev_dependencies :
13
13
build_runner : ^1.10.0
You can’t perform that action at this time.
0 commit comments