Add message about doing a manual pass

This commit is contained in:
Arnaud_Cayrol 2026-02-14 16:15:06 +01:00
parent 024a11c1de
commit e814731ec2
2 changed files with 8 additions and 2 deletions

View file

@ -130,7 +130,7 @@
{/if}
{#if progress.message}
<p class="message">{progress.message}</p>
<p class="message">{@html progress.message}</p>
{/if}
{#if (jobStatus === 'running' || jobStatus === 'completed' || jobStatus === 'cancelled') && (displayCompleted > 0 || Object.keys(displaySkipStats).length > 0)}

View file

@ -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: {}\
<br><i>Please note that for the best \
looking results, you should do a manual pass in the gallery view \
(button available in the section below)</i>",
output_path.display()
)),
skip_stats: final_progress.skip_stats,
person_id: final_progress.person_id,
person_name: final_progress.person_name,