From 37da4ac13ad0fe3d7df4c91c48fb1aef24cc2494 Mon Sep 17 00:00:00 2001 From: MoonRide303 Date: Fri, 20 Oct 2023 11:07:23 +0200 Subject: [PATCH] Cleaned up Private Log (most users won't need information about raw prompts) --- fooocus_version.py | 2 +- modules/async_worker.py | 2 -- update_log.md | 4 ++++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fooocus_version.py b/fooocus_version.py index e460162b..d9aee23b 100644 --- a/fooocus_version.py +++ b/fooocus_version.py @@ -1 +1 @@ -version = '2.1.711' +version = '2.1.712' diff --git a/modules/async_worker.py b/modules/async_worker.py index 808d2236..1cbb4dbe 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -541,9 +541,7 @@ def worker(): for x in imgs: d = [ ('Prompt', task['task_prompt']), - ('Prompt (raw)', raw_prompt), ('Negative Prompt', task['task_negative_prompt']), - ('Negative Prompt (raw)', raw_negative_prompt), ('Fooocus V2 Expansion', task['expansion']), ('Styles', str(raw_style_selections)), ('Performance', performance_selection), diff --git a/update_log.md b/update_log.md index f16e5ce3..f9b8aff9 100644 --- a/update_log.md +++ b/update_log.md @@ -1,3 +1,7 @@ +# 2.1.712 + +* Cleaned up Private Log (most users won't need information about raw prompts). + # 2.1.711 * Added more information about prompts in Private Log.