Skip to content

Commit

Permalink
just_audio 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Jul 19, 2021
1 parent 11cc67f commit 823c530
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions just_audio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.9.2

* Fix Android bug when loading empty playlist.
* Fix Android NullPointerException on stop().

## 0.9.1

* Fix iOS/macOS bug when setting volume before load.
Expand Down
7 changes: 4 additions & 3 deletions just_audio/lib/just_audio.dart
Original file line number Diff line number Diff line change
Expand Up @@ -923,9 +923,10 @@ class AudioPlayer {
}
}

/// Sets the playback speed of this player, where 1.0 is normal speed. Note
/// that values in excess of 1.0 may result in stalls if the playback speed is
/// faster than the player is able to downloaded the audio.
/// Sets the playback speed to use when [playing] is `true`, where 1.0 is
/// normal speed. Note that values in excess of 1.0 may result in stalls if
/// the playback speed is faster than the player is able to downloaded the
/// audio.
Future<void> setSpeed(final double speed) async {
if (_disposed) return;
_playbackEvent = _playbackEvent.copyWith(
Expand Down
2 changes: 1 addition & 1 deletion just_audio/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: just_audio
description: A feature-rich audio player for Flutter. Loop, clip and concatenate any sound from any source (asset/file/URL/stream) in a variety of audio formats with gapless playback.
version: 0.9.1
version: 0.9.2
homepage: https://github.com/ryanheise/just_audio/tree/master/just_audio

environment:
Expand Down

0 comments on commit 823c530

Please sign in to comment.