From f55e14be9abe523b107d45f79c6c3d78c50b74d2 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 1 Jun 2024 14:14:51 -0400 Subject: [PATCH] add variation seed to metadata --- CHANGELOG.md | 4 +++- modules/processing_info.py | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a6d0cf1..67d38df12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,11 @@ - fix gallery mtime display - fix extra network scrollable area when using modernui - fix control prompts list handling -- fix variation seed with hires pass - fix restore variation seed and strength - fix negative prompt parsing from metadata +- fix stable cascade progress monitoring +- fix variation seed with hires pass +- add variation seed info to metadata - workaround for scale-by when using modernui - lock torch-directml version - improve xformers installer diff --git a/modules/processing_info.py b/modules/processing_info.py index 5f60fb1a1..809d87115 100644 --- a/modules/processing_info.py +++ b/modules/processing_info.py @@ -64,8 +64,6 @@ def create_infotext(p: StableDiffusionProcessing, all_prompts=None, all_seeds=No "Operations": '; '.join(ops).replace('"', '') if len(p.ops) > 0 else 'none', } if 'txt2img' in p.ops: - pass - if shared.backend == shared.Backend.ORIGINAL: args["Variation seed"] = all_subseeds[index] if p.subseed_strength > 0 else None args["Variation strength"] = p.subseed_strength if p.subseed_strength > 0 else None if 'hires' in p.ops or 'upscale' in p.ops: