just_audio_platform_interface 2.0.0
This commit is contained in:
parent
ef40332a78
commit
ccf88f100e
|
@ -127,7 +127,7 @@ packages:
|
||||||
path: "../../just_audio_platform_interface"
|
path: "../../just_audio_platform_interface"
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "1.1.1"
|
version: "2.0.0"
|
||||||
just_audio_web:
|
just_audio_web:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -197,7 +197,7 @@ packages:
|
||||||
path: "../just_audio_platform_interface"
|
path: "../just_audio_platform_interface"
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "1.1.1"
|
version: "2.0.0"
|
||||||
just_audio_web:
|
just_audio_web:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
## 2.0.0
|
||||||
|
|
||||||
|
- Breaking change: Implementations must not set the shuffle order except as
|
||||||
|
instructed by setShuffleOrder.
|
||||||
|
- Breaking change: Implementations must be able to recreate a player instance
|
||||||
|
with the same ID as a disposed instance.
|
||||||
|
- Breaking change: none state renamed to idle.
|
||||||
|
|
||||||
## 1.1.1
|
## 1.1.1
|
||||||
|
|
||||||
- Add initialPosition and initialIndex to LoadRequest.
|
- Add initialPosition and initialIndex to LoadRequest.
|
||||||
|
|
|
@ -3,13 +3,13 @@ description: A common platform interface for the just_audio plugin.
|
||||||
homepage: https://github.com/ryanheise/just_audio/tree/master/just_audio_platform_interface
|
homepage: https://github.com/ryanheise/just_audio/tree/master/just_audio_platform_interface
|
||||||
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
|
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
|
||||||
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
|
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
|
||||||
version: 1.1.1
|
version: 2.0.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
meta: ^1.1.8
|
meta: ^1.1.8
|
||||||
plugin_platform_interface: ^1.0.2
|
plugin_platform_interface: ^1.0.3
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
|
Loading…
Reference in New Issue