Skip to content

Commit

Permalink
bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Aug 4, 2022
1 parent a9c4919 commit 57dec56
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

--------------------------------------------
[1.0.6] - 2022-08-04

* Add selectAudioOutput method to MediaDevices.
* Add ondevicechange property to MediaDevices.

[1.0.5] - 2022-05-31

* Added Function(int currentAmount, int changedAmount)? onBufferedAmountChange callback (bufferedAmount should be set to non nullable after bufferedAmount implementation on all platforms).
Expand Down
2 changes: 2 additions & 0 deletions lib/src/media_stream.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'media_stream_track.dart';

///https://w3c.github.io/mediacapture-main/#mediastream
Expand Down
2 changes: 1 addition & 1 deletion lib/src/mediadevices.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class MediaDeviceInfo {
/// An object that configures what device(s) may be offered in the user prompt.
class AudioOutputOptions {
AudioOutputOptions({
this.deviceId = "",
this.deviceId = '',
});

/// A string representing the id of the (only) device to display in the prompt (with default value: "").
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: webrtc_interface
description: WebRTC Interface for Dart-Web/Flutter.
version: 1.0.5
version: 1.0.6
homepage: https://flutter-webrtc.org

environment:
Expand Down

0 comments on commit 57dec56

Please sign in to comment.