From e814731ec2b30280b9a1217a9f73347baad47647 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Sat, 14 Feb 2026 16:15:06 +0100 Subject: [PATCH] Add message about doing a manual pass --- frontend/src/lib/components/ProgressDisplay.svelte | 2 +- src/job/mod.rs | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/ProgressDisplay.svelte b/frontend/src/lib/components/ProgressDisplay.svelte index 9c716f3..4312ebf 100644 --- a/frontend/src/lib/components/ProgressDisplay.svelte +++ b/frontend/src/lib/components/ProgressDisplay.svelte @@ -130,7 +130,7 @@ {/if} {#if progress.message} -

{progress.message}

+

{@html progress.message}

{/if} {#if (jobStatus === 'running' || jobStatus === 'completed' || jobStatus === 'cancelled') && (displayCompleted > 0 || Object.keys(displaySkipStats).length > 0)} diff --git a/src/job/mod.rs b/src/job/mod.rs index d4d4c08..7f424b6 100644 --- a/src/job/mod.rs +++ b/src/job/mod.rs @@ -138,7 +138,13 @@ pub async fn run_job(state: AppState, params: JobParams, cancel_token: Cancellat status: JobStatus::Completed, completed: final_progress.completed, total: final_progress.total, - message: Some(format!("Video saved to: {}", output_path.display())), + message: Some(format!( + "Video saved to: {}\ +
Please note that for the best \ + looking results, you should do a manual pass in the gallery view \ + (button available in the section below)", + output_path.display() + )), skip_stats: final_progress.skip_stats, person_id: final_progress.person_id, person_name: final_progress.person_name,