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

2
Cargo.lock generated
View File

@@ -4,7 +4,7 @@ version = 4
[[package]]
name = "PMOMusic"
version = "0.3.26"
version = "0.3.27"
dependencies = [
"axum 0.8.7",
"console-subscriber",

View File

@@ -1,6 +1,6 @@
[package]
name = "PMOMusic"
version = "0.3.26"
version = "0.3.27"
edition = "2024"
[dependencies]

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;

View File

@@ -1 +1 @@
0.3.26
0.3.27