Skip to content

Commit 57dec56

Browse files
committed
bump version.
1 parent a9c4919 commit 57dec56

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

33
--------------------------------------------
4+
[1.0.6] - 2022-08-04
5+
6+
* Add selectAudioOutput method to MediaDevices.
7+
* Add ondevicechange property to MediaDevices.
8+
49
[1.0.5] - 2022-05-31
510

611
* Added Function(int currentAmount, int changedAmount)? onBufferedAmountChange callback (bufferedAmount should be set to non nullable after bufferedAmount implementation on all platforms).

lib/src/media_stream.dart

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import 'dart:async';
2+
13
import 'media_stream_track.dart';
24

35
///https://w3c.github.io/mediacapture-main/#mediastream

lib/src/mediadevices.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class MediaDeviceInfo {
159159
/// An object that configures what device(s) may be offered in the user prompt.
160160
class AudioOutputOptions {
161161
AudioOutputOptions({
162-
this.deviceId = "",
162+
this.deviceId = '',
163163
});
164164

165165
/// A string representing the id of the (only) device to display in the prompt (with default value: "").

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webrtc_interface
22
description: WebRTC Interface for Dart-Web/Flutter.
3-
version: 1.0.5
3+
version: 1.0.6
44
homepage: https://flutter-webrtc.org
55

66
environment:

0 commit comments

Comments
 (0)