Skip to content

Commit

Permalink
Merge branch 'feature/js_upgrade' into minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Mar 29, 2024
2 parents 2df406c + 5070360 commit fa845f7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions audio_service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Fix Android NPE in sendNotificationClicked and onConnected.
* Catch and broadcast async platform exceptions.
* Support js '>=0.6.3 <0.8.0'
* Fix setAndroidPlaybackInfo call blocking (@julianscheel).
* Pass through missing extras to playFrom.../prepareFrom... (@Ruchit2759).

Expand Down
1 change: 0 additions & 1 deletion audio_service/example/lib/example_multiple_handlers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ class AudioPlayerHandler extends BaseAudioHandler
.toList(),
));
} catch (e) {
// ignore: avoid_print
print("Error: $e");
}
}
Expand Down
4 changes: 2 additions & 2 deletions audio_service/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ dependencies:

# Use these deps when publishing.
audio_service_platform_interface: ^0.1.1
audio_service_web: ^0.1.1
audio_service_web: ^0.1.2

audio_session: ^0.1.16
rxdart: '>=0.26.0 <0.28.0'
flutter_cache_manager: ^3.3.1
clock: ^1.1.0
js: ^0.6.3
js: '>=0.6.3 <0.8.0'
flutter:
sdk: flutter
flutter_web_plugins:
Expand Down
4 changes: 4 additions & 0 deletions audio_service_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2

* Support js '>=0.6.3 <0.8.0'

## 0.1.1

* Better detection of browser support (@nt4f04uNd)
Expand Down
4 changes: 2 additions & 2 deletions audio_service_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: audio_service_web
description: Web platform implementation of audio_service. This implementation is endorsed and therefore doesn't require a direct dependency.
version: 0.1.1
version: 0.1.2
homepage: https://github.com/ryanheise/audio_service/tree/master/audio_service_web

environment:
Expand All @@ -23,7 +23,7 @@ dependencies:
audio_service_platform_interface: ^0.1.1

rxdart: '>=0.26.0 <0.28.0'
js: ^0.6.3
js: '>=0.6.3 <0.8.0'
flutter:
sdk: flutter
flutter_web_plugins:
Expand Down

0 comments on commit fa845f7

Please sign in to comment.