- Add viewport-fit=cover to HTML meta for iOS safe-area support - Extend bottom drawers and tab bar into system navigation area using env(safe_area_inset_bottom) - Adjust queue drawer transforms to account for safe-area padding + Add enrich_position_from_queue() helper and integrate across UPnP, Arylic TCP, LinkPlay & Chromecast backends to ensure queue-authoritative metadata + Add transient error retry logic for UPnP control actions (2 retries, 300ms delay) + Separate timeouts: short poll timeout for GetTransportInfo/GetPosition (3s), longer actiontimeout SetAVTURI/SetNext... for slow devices + Remove duplicate continuous-stream detection from play_uri() methods (now handled centrally) - Bump version to 0.3.49
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
[package]
|
|
name = "PMOMusic"
|
|
version = "0.3.49"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
pmoconfig = { path = "../pmoconfig" }
|
|
pmoupnp = { path = "../pmoupnp"}
|
|
pmomediarenderer = { path = "../pmomediarenderer" }
|
|
pmomediaserver = { path = "../pmomediaserver", features = ["qobuz", "paradise", "paradise-api", "radiofrance", "api"] }
|
|
pmosource = { path = "../pmosource", features = ["server"] }
|
|
pmoserver = { path = "../pmoserver" }
|
|
pmocovers = { path = "../pmocovers", features = ["pmoserver"] }
|
|
pmoaudiocache = { path = "../pmoaudiocache", features = ["pmoserver"]}
|
|
pmoaudio-ext = { path = "../pmoaudio-ext", features = ["all"] }
|
|
pmoapp = { path = "../pmoapp", features = ["pmoserver"] }
|
|
pmocontrol = { path = "../pmocontrol", features = ["pmoserver"] }
|
|
pmowebrenderer = { path = "../pmowebrenderer", features = ["pmoserver"] }
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "time", "signal"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = "0.3.20"
|
|
axum = "0.8.4"
|
|
serde_json = "1.0.145"
|
|
utoipa = "5.4"
|
|
console-subscriber = "0.4.1"
|