Skip to content

Commit

Permalink
Merge branch 'feature/art_headers' into minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Jun 27, 2022
2 parents 6f5ea35 + ec3629f commit d76b6d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions just_audio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ await player.setLoopMode(LoopMode.all); // Set playlist to loop (off|all|
await player.setShuffleModeEnabled(true); // Shuffle playlist order (true|false)
// Update the playlist
await playlist.add(newChild);
await playlist.insert(3, newChild);
await playlist.add(newChild1);
await playlist.insert(3, newChild2);
await playlist.removeAt(3);
```

Expand Down Expand Up @@ -128,7 +128,7 @@ Note: `LockCachingAudioSource` is implemented via a local HTTP proxy which on An
// Feed your own stream of bytes into the player
class MyCustomSource extends StreamAudioSource {
final List<int> bytes;
MySource(this.bytes);
MyCustomSource(this.bytes);
@override
Future<StreamAudioResponse> request([int? start, int? end]) async {
Expand Down
5 changes: 5 additions & 0 deletions just_audio_background/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.1-beta.7

* Fix build when targeting Android 13.
* Add MediaItem.artHeaders.

## 0.0.1-beta.6

* Update documentation/example for Android 12.
Expand Down
4 changes: 2 additions & 2 deletions just_audio_background/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: just_audio_background
description: An add-on for just_audio that supports background playback and media notifications.
homepage: https://github.com/ryanheise/just_audio/tree/master/just_audio_background
version: 0.0.1-beta.6
version: 0.0.1-beta.7

dependencies:
just_audio_platform_interface: ^4.1.0
# just_audio_platform_interface:
# path: ../just_audio_platform_interface
audio_service: ^0.18.5
audio_service: ^0.18.6
audio_session: ^0.1.7
flutter:
sdk: flutter
Expand Down

0 comments on commit d76b6d5

Please sign in to comment.