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:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -4,7 +4,7 @@ version = 4
|
||||
|
||||
[[package]]
|
||||
name = "PMOMusic"
|
||||
version = "0.3.26"
|
||||
version = "0.3.27"
|
||||
dependencies = [
|
||||
"axum 0.8.7",
|
||||
"console-subscriber",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "PMOMusic"
|
||||
version = "0.3.26"
|
||||
version = "0.3.27"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.3.26
|
||||
0.3.27
|
||||
|
||||
Reference in New Issue
Block a user