From fcde9f406dd3e90df44c986a44ec9d74c5613760 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 5 Apr 2025 12:57:50 -0400 Subject: [PATCH] js progress bar longer timeout Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 40 +++++++++++++++++++++------------------ javascript/progressBar.js | 4 ++-- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0945143e9..c481a7b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,24 +2,28 @@ ## Update for 2025-04-05 -- Video: add FasterCache and PAB support to WanDB and LTX models -- ZLUDA: add more GPUs to recognized list -- Progress: add additional fields to progress API -- Progress: use batch-count for progress -- Grid: add of max-rows and max-columns in settings to control grid format -- LoRA: add option to force-reload LoRA on every generate -- Gallery: add max-columns in settings for gradio gallery components -- Styles: resize and bring quick-ui to forward on hover -- Logging: logging cleanup -- Params: Reset default guidance-rescale from 0.7 to 0.0 -- Diag: add get-server-status to UI generate context menu -- Pipe: [SoftFill](https://github.com/zacheryvaughn/softfill-pipelines) - select in scripts, available for sdxl in inpaint model -- Flux: TeaCache for Flux.1 -- Fix: LoRA obey configured device when performing calculations -- Fix: ZLUDA startup -- Fix: balanced offload remove non-blocking move op -- Fix: debug logging +- **Features** + - Flux: TeaCache for Flux.1 + - Video: add `FasterCache` and `PAB` support to WanDB and LTX models + - ZLUDA: add more GPUs to recognized list + - Pipe: [SoftFill](https://github.com/zacheryvaughn/softfill-pipelines) + select in scripts, available for sdxl in inpaint model + - LoRA: add option to force-reload LoRA on every generate + - Grid: add of max-rows and max-columns in settings to control grid format + - Gallery: add max-columns in settings for gradio gallery components + - Diag: add get-server-status to UI generate context menu +- **Changes** + - Params: Reset default guidance-rescale from 0.7 to 0.0 + - Progress: add additional fields to progress API + - Progress: use batch-count for progress +- **Fixes** + - Logging: logging cleanup + - Styles: resize and bring quick-ui to forward on hover + - LoRA obey configured device when performing calculations + - ZLUDA startup issues + - balanced offload remove non-blocking move op + - debug logging causes invalid import + - UI progress allow for longer timeouts ## Update for 2025-04-03 diff --git a/javascript/progressBar.js b/javascript/progressBar.js index 1edcbb501..801abfffb 100644 --- a/javascript/progressBar.js +++ b/javascript/progressBar.js @@ -128,8 +128,8 @@ function requestProgress(id_task, progressEl, galleryEl, atEnd = null, onProgres lastState = res; const elapsedFromStart = (new Date() - dateStart) / 1000; hasStarted |= res.active; - if (res.completed || (!res.active && (hasStarted || once)) || (elapsedFromStart > 30 && !res.queued && res.progress === prevProgress)) { - if (res?.debug) debug('livePreview end:', res); + if (res.completed || (!res.active && (hasStarted || once)) || (elapsedFromStart > 120 && !res.queued && res.progress === prevProgress)) { + debug('livePreview end:', res); done(); return; }