diff --git a/CHANGELOG.md b/CHANGELOG.md index 388d286..9aa2c0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -------------------------------------------- +[1.0.7] - 2022-08-04 + +* Add stub for selectAudioOutput. + [1.0.6] - 2022-08-04 * Add selectAudioOutput method to MediaDevices. diff --git a/lib/src/mediadevices.dart b/lib/src/mediadevices.dart index 7ac216b..9e43527 100644 --- a/lib/src/mediadevices.dart +++ b/lib/src/mediadevices.dart @@ -122,7 +122,8 @@ abstract class MediaDevices { Function(dynamic event)? ondevicechange; /// Prompts the user to select a specific audio output device. - Future selectAudioOutput([AudioOutputOptions? options]); + Future selectAudioOutput([AudioOutputOptions? options]) => + throw UnimplementedError(); } /// This describe the media input and output devices, such as microphones, diff --git a/pubspec.yaml b/pubspec.yaml index a648719..af429ff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: webrtc_interface description: WebRTC Interface for Dart-Web/Flutter. -version: 1.0.6 +version: 1.0.7 homepage: https://flutter-webrtc.org environment: