Version 0.0.5
This commit is contained in:
parent
ef8467d9ce
commit
c7c91c1804
|
@ -1,3 +1,8 @@
|
|||
## 0.0.5
|
||||
|
||||
* API change for audio clipping.
|
||||
* Performance improvements and bug fixes on Android.
|
||||
|
||||
## 0.0.4
|
||||
|
||||
* Remove reseeking hack.
|
||||
|
|
|
@ -115,7 +115,7 @@ packages:
|
|||
name: path_provider
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.4.5"
|
||||
version: "1.5.1"
|
||||
pedantic:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
@ -221,4 +221,4 @@ packages:
|
|||
version: "3.5.0"
|
||||
sdks:
|
||||
dart: ">=2.6.0 <3.0.0"
|
||||
flutter: ">=1.9.1+hotfix.5 <2.0.0"
|
||||
flutter: ">=1.10.0 <2.0.0"
|
||||
|
|
|
@ -101,7 +101,7 @@ packages:
|
|||
name: path_provider
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.4.5"
|
||||
version: "1.5.1"
|
||||
pedantic:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
@ -207,4 +207,4 @@ packages:
|
|||
version: "3.5.0"
|
||||
sdks:
|
||||
dart: ">=2.6.0 <3.0.0"
|
||||
flutter: ">=1.9.1+hotfix.5 <2.0.0"
|
||||
flutter: ">=1.10.0 <2.0.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: just_audio
|
||||
description: Flutter plugin to play audio from streams, files and assets. Works with audio_service to play audio in the background.
|
||||
version: 0.0.4
|
||||
description: Flutter plugin to play audio from streams, files, assets and DASH/HLS streams. Works with audio_service to play audio in the background.
|
||||
version: 0.0.5
|
||||
homepage: https://github.com/ryanheise/just_audio
|
||||
|
||||
environment:
|
||||
|
@ -9,7 +9,7 @@ environment:
|
|||
dependencies:
|
||||
rxdart: ^0.23.1
|
||||
path: ^1.6.4
|
||||
path_provider: ^1.4.5
|
||||
path_provider: ^1.5.1
|
||||
flutter:
|
||||
sdk: flutter
|
||||
|
||||
|
|
Loading…
Reference in New Issue