Skip to content

Commit

Permalink
release: 1.0.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Nov 12, 2022
1 parent cce7871 commit 4ff710a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

--------------------------------------------
[1.0.11] - 2022-11-12

* Change MediaStream.clone to async.

[1.0.10] - 2022-11-02

* Update MediaRecorder interface.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/media_stream_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MediaStreamWeb extends MediaStream {
bool? get active => jsStream.active;

@override
MediaStream clone() {
Future<MediaStream> clone() async {
return MediaStreamWeb(jsStream.clone(), ownerTag);
}
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: dart_webrtc
description: Use the dart/js library to re-wrap the webrtc js interface of the browser, to adapted common browsers.
version: 1.0.10
version: 1.0.11
homepage: https://github.com/flutter-webrtc/dart-webrtc

environment:
sdk: '>=2.13.0 <3.0.0'

dependencies:
webrtc_interface: ^1.0.9
webrtc_interface: ^1.0.10

dev_dependencies:
build_runner: ^1.10.0
Expand Down

0 comments on commit 4ff710a

Please sign in to comment.