js progress bar longer timeout

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-04-05 12:57:50 -04:00
parent 8f95477ad2
commit fcde9f406d
2 changed files with 24 additions and 20 deletions
+22 -18
View File
@@ -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
+2 -2
View File
@@ -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;
}