Skip to content

Latest commit

 

History

History
63 lines (37 loc) · 1.15 KB

CHANGELOG.md

File metadata and controls

63 lines (37 loc) · 1.15 KB

Changelog

audioplayers 0.5.2

  • don't call the onClomplete hook when you manually stop the audio

audioplayers 0.5.1

  • fix for dart 2 (thanks to @efortuna)

audioplayers 0.5.0

  • improves Android performance by not calling prepare on the main thread

audioplayers 0.4.1

  • fix seek for iOS

audioplayers 0.4.0

  • volume controls

audioplayers 0.3.0

  • working on iOS (thanks @feroult <3)

audioplayers 0.2.0

  • adding disable log option

audioplayers 0.1.0

  • support for multiple audios simultaneously

0.2.0

  • support for local files

0.1.0

0.0.2

Separated handlers for position, duration, completion and errors

  • setDurationHandler(TimeChangeHandler handler)

  • setPositionHandler(TimeChangeHandler handler)

  • setCompletionHandler(VoidCallback callback)

  • setErrorHandler(ErrorHandler handler)

  • new typedef

typedef void TimeChangeHandler(Duration duration);
typedef void ErrorHandler(String message);

0.0.1

  • first POC :
    • methods : play, pause, stop
    • a globalHandler for position, duration, completion and errors