From 90ceba0693fc16ddc5896104eb9c89b167f13b9c Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 17 Dec 2025 02:22:33 -0500 Subject: [PATCH] Include upscale output path in queue job --- main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 28ee134..50044d8 100644 --- a/main.go +++ b/main.go @@ -11145,10 +11145,13 @@ func buildUpscaleView(state *appState) fyne.CanvasObject { description += fmt.Sprintf(" + AI (%s)", state.upscaleAIModel) } + desc := fmt.Sprintf("%s → %s", description, filepath.Base(outputPath)) + return &queue.Job{ Type: queue.JobTypeUpscale, Title: "Upscale: " + filepath.Base(state.upscaleFile.Path), - Description: description, + Description: desc, + OutputFile: outputPath, Config: map[string]interface{}{ "inputPath": state.upscaleFile.Path, "outputPath": outputPath,