chore: bump version to 0.3.27

- Update Cargo.toml and version.txt to v0.3.27
- Rename Step 3 to Step 4 in control_point.rs for clarity
- Add UI notification on renderer state transition (PlaybackState::Transitioning)
This commit is contained in:
2026-03-25 13:08:14 +01:00
parent bded788431
commit 069e9ee496
4 changed files with 10 additions and 4 deletions

View File

@@ -1538,7 +1538,13 @@ fn refresh_attached_queue_for(
return Ok(());
}
// Step 3: Browse container
// Step 3: Notify UI that the renderer is loading (Transitioning state)
event_bus.broadcast(RendererEvent::StateChanged {
id: renderer_id.clone(),
state: PlaybackState::Transitioning,
});
// Step 4: Browse container (renamed from Step 3 for clarity)
const MAX_BROWSE_ATTEMPTS: usize = 3;
const BROWSE_RETRY_DELAY_MS: u64 = 200;