Changelog#
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
0.2.0 - 2025-06-26#
Added#
- Deployed online documentation: https://flet-dev.github.io/flet-audio/
Changed#
- Refactored
Audio
control to use@ft.control
dataclass-style definition and switched toService
control type.
Breaking Changes#
Audio
must now be added toPage.services
instead ofPage.overlay
.- The following properties were renamed:
on_state_changed
→on_state_change
on_duration_changed
→on_duration_change
on_position_changed
→on_position_change
- Method
Audio.play()
now accepts an optionalposition
parameter for specifying start position. - The following sync methods were removed:
get_duration()
→ useget_duration_async()
insteadget_current_position()
→ useget_current_position_async()
instead
0.1.0 - 2025-01-15#
Initial release.