Skip to content

Commit

Permalink
just_audio 0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Jan 23, 2021
1 parent 7d747b3 commit 652c71a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
8 changes: 8 additions & 0 deletions just_audio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.6.9

* Support assets on web.
* Support StreamAudioSource on web.
* Fix bug on web when manipulating playlists.
* Asset cache no longer deleted on dispose.
* Add contentType to StreamAudioResponse.

## 0.6.8

* Fix pubspec description.
Expand Down
6 changes: 4 additions & 2 deletions just_audio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ A feature-rich audio player for Android, iOS, macOS and web.
| Feature | Android | iOS | macOS | Web |
| ------- | :-------: | :-----: | :-----: | :-----: |
| read from URL |||||
| read from file |||| |
| read from asset |||| |
| read from file |||| [^1] |
| read from asset |||| |
| request headers |||| |
| DASH || | | |
| HLS |||| |
Expand All @@ -30,6 +30,8 @@ A feature-rich audio player for Android, iOS, macOS and web.
| report player errors |||||
| Handle phonecall interruptions ||| | |

[^1]: Direct access to `file://` URLs is not permitted on the web. Instead, files are accessed using a file picker (e.g. file_picker) to read the bytes and using a `StreamAudioSource` to stream those bytes to the player.

Please consider reporting any bugs you encounter [here](https://github.com/ryanheise/just_audio/issues) or submitting pull requests [here](https://github.com/ryanheise/just_audio/pulls).

## Migrating from 0.5.x to 0.6.x
Expand Down
4 changes: 2 additions & 2 deletions just_audio/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.6.8"
version: "0.6.9"
just_audio_platform_interface:
dependency: transitive
description:
Expand All @@ -235,7 +235,7 @@ packages:
name: just_audio_web
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.2"
version: "0.2.3"
logging:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion just_audio/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ packages:
name: just_audio_web
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.2"
version: "0.2.3"
logging:
dependency: transitive
description:
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: Audio player for files, assets, URLs and DASH/HLS streams supporting gapless looping, shuffling, concatenating, clipping. Works with audio_service to play audio in the background.
version: 0.6.8
version: 0.6.9
homepage: https://github.com/ryanheise/just_audio/tree/master/just_audio

environment:
Expand Down

0 comments on commit 652c71a

Please sign in to comment.