Skip to content

v0.11.1

Choose a tag to compare

@github-actions github-actions released this 20 Mar 21:32
· 59 commits to main since this release
b4349dc

Fixed

  • Controller startup timing: MIDI controllers (and any controller that depends on
    hardware devices) failed to start because controllers were initialized before async
    hardware discovery completed. Controllers are now started at the end of hardware
    initialization, after all devices are ready. This also affects hardware reloads —
    controllers are re-created with each reload cycle.
  • Player::new() returns Arc<Player>: Since the player spawns async init tasks
    that require Arc access, new() now returns Arc<Player> directly instead of
    requiring callers to wrap it.