diff --git a/.DS_Store b/.DS_Store index b20cdc77..b3752861 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index 4ebc6399..4b5b564d 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ xxx C/src/soxr-0.1.3/Release/tests **/Release/ **/Debug/ +qobuz_debug OLD-GO-CODE/ xxx xx diff --git a/Cargo.lock b/Cargo.lock index e5a7f33a..208cac68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "PMOMusic" -version = "0.3.25" +version = "0.3.27" dependencies = [ "axum 0.8.7", "console-subscriber", diff --git a/Dockerfile b/Dockerfile index 0d5c5e85..0233127f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,8 +32,9 @@ RUN apt-get update && apt-get install -y \ cmake \ && rm -rf /var/lib/apt/lists/* -# Copy Cargo workspace files +# Copy Cargo workspace files and registry configuration COPY Cargo.toml Cargo.lock ./ +COPY .cargo/ ./.cargo/ # Copy all crates COPY PMOMusic/ ./PMOMusic/ diff --git a/PMOMusic/Cargo.toml b/PMOMusic/Cargo.toml index e95278b8..a5e304e2 100644 --- a/PMOMusic/Cargo.toml +++ b/PMOMusic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "PMOMusic" -version = "0.3.26" +version = "0.3.27" edition = "2024" [dependencies] diff --git a/pmoapp/webapp/src/components/unified/RendererDrawer.vue b/pmoapp/webapp/src/components/unified/RendererDrawer.vue index 88a82dc7..8eb0a19b 100644 --- a/pmoapp/webapp/src/components/unified/RendererDrawer.vue +++ b/pmoapp/webapp/src/components/unified/RendererDrawer.vue @@ -449,8 +449,7 @@ async function handleTransferQueue(event: Event, targetRendererId: string) { @media (max-width: 768px) and (orientation: portrait) { .drawer-backdrop { - right: 0; /* Mobile portrait: backdrop prend tout l'écran */ - background: rgba(0, 0, 0, 0.4); /* Plus sombre sur mobile */ + display: none; /* Mobile portrait: le drawer couvre 100vw, pas besoin de backdrop */ } } diff --git a/pmoapp/webapp/src/components/unified/ServerDrawer.vue b/pmoapp/webapp/src/components/unified/ServerDrawer.vue index df3d42d6..96e5a72a 100644 --- a/pmoapp/webapp/src/components/unified/ServerDrawer.vue +++ b/pmoapp/webapp/src/components/unified/ServerDrawer.vue @@ -1,5 +1,5 @@