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
|
## 0.0.4
|
||||||
|
|
||||||
* Remove reseeking hack.
|
* Remove reseeking hack.
|
||||||
|
|
|
@ -115,7 +115,7 @@ packages:
|
||||||
name: path_provider
|
name: path_provider
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.5"
|
version: "1.5.1"
|
||||||
pedantic:
|
pedantic:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -221,4 +221,4 @@ packages:
|
||||||
version: "3.5.0"
|
version: "3.5.0"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=2.6.0 <3.0.0"
|
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
|
name: path_provider
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.5"
|
version: "1.5.1"
|
||||||
pedantic:
|
pedantic:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -207,4 +207,4 @@ packages:
|
||||||
version: "3.5.0"
|
version: "3.5.0"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=2.6.0 <3.0.0"
|
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
|
name: just_audio
|
||||||
description: Flutter plugin to play audio from streams, files and assets. Works with audio_service to play audio in the background.
|
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.4
|
version: 0.0.5
|
||||||
homepage: https://github.com/ryanheise/just_audio
|
homepage: https://github.com/ryanheise/just_audio
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
@ -9,7 +9,7 @@ environment:
|
||||||
dependencies:
|
dependencies:
|
||||||
rxdart: ^0.23.1
|
rxdart: ^0.23.1
|
||||||
path: ^1.6.4
|
path: ^1.6.4
|
||||||
path_provider: ^1.4.5
|
path_provider: ^1.5.1
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue