Version 0.4.4
This commit is contained in:
parent
f6c835e3ce
commit
4b4082bcb5
|
@ -1,3 +1,10 @@
|
||||||
|
## 0.4.4
|
||||||
|
|
||||||
|
* Fix crash when disposing of positionStream controller.
|
||||||
|
* Handle interruptions correctly when willPauseWhenDucked is set.
|
||||||
|
* Correct seek/position/duration in HLS streams (@snaeji).
|
||||||
|
* Resume at correct speed after seek on iOS (@subhash279).
|
||||||
|
|
||||||
## 0.4.3
|
## 0.4.3
|
||||||
|
|
||||||
* Add section to README on configuring the audio session.
|
* Add section to README on configuring the audio session.
|
||||||
|
|
|
@ -4,7 +4,7 @@ This Flutter plugin plays audio from URLs, files, assets, DASH/HLS streams and p
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
| Feature | Android | iOS | MacOS | Web |
|
| Feature | Android | iOS | macOS | Web |
|
||||||
| ------- | :-------: | :-----: | :-----: | :-----: |
|
| ------- | :-------: | :-----: | :-----: | :-----: |
|
||||||
| read from URL | ✅ | ✅ | ✅ | ✅ |
|
| read from URL | ✅ | ✅ | ✅ | ✅ |
|
||||||
| read from file | ✅ | ✅ | ✅ | |
|
| read from file | ✅ | ✅ | ✅ | |
|
||||||
|
@ -211,9 +211,9 @@ If you wish to connect to non-HTTPS URLS, add the following to your `Info.plist`
|
||||||
</dict>
|
</dict>
|
||||||
```
|
```
|
||||||
|
|
||||||
### MacOS
|
### macOS
|
||||||
|
|
||||||
To allow your MacOS application to access audio files on the Internet, add the following to your `DebugProfile.entitlements` and `Release.entitlements` files:
|
To allow your macOS application to access audio files on the Internet, add the following to your `DebugProfile.entitlements` and `Release.entitlements` files:
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<key>com.apple.security.network.client</key>
|
<key>com.apple.security.network.client</key>
|
||||||
|
|
|
@ -113,7 +113,7 @@ packages:
|
||||||
path: ".."
|
path: ".."
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "0.4.3"
|
version: "0.4.4"
|
||||||
matcher:
|
matcher:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: just_audio
|
name: just_audio
|
||||||
description: Flutter plugin to play audio from streams, files, assets, DASH/HLS streams and playlists. Works with audio_service to play audio in the background.
|
description: Flutter plugin to play audio from streams, files, assets, DASH/HLS streams and playlists. Works with audio_service to play audio in the background.
|
||||||
version: 0.4.3
|
version: 0.4.4
|
||||||
homepage: https://github.com/ryanheise/just_audio
|
homepage: https://github.com/ryanheise/just_audio
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in New Issue