Merge pull request #743 from MoonRide303/wildcards-more-info

Added more information about prompts in Private Log, made wildcards in negative prompt use different seed
This commit is contained in:
MoonRide303 2023-10-20 10:11:54 +02:00 committed by GitHub
commit 3350b564a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 4 deletions

View File

@ -1 +1 @@
version = '2.1.710'
version = '2.1.711'

View File

@ -231,7 +231,7 @@ def worker():
for i in range(image_number):
task_seed = seed + i
task_prompt = apply_wildcards(prompt, task_seed)
task_negative_prompt = apply_wildcards(negative_prompt, task_seed)
task_negative_prompt = apply_wildcards(negative_prompt, task_seed + 1)
task_extra_positive_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_positive_prompts]
task_extra_negative_prompts = [apply_wildcards(pmt, task_seed) for pmt in extra_negative_prompts]
@ -257,6 +257,7 @@ def worker():
tasks.append(dict(
task_seed=task_seed,
task_prompt=task_prompt,
task_negative_prompt=task_negative_prompt,
positive=positive_basic_workloads,
negative=negative_basic_workloads,
expansion='',
@ -539,8 +540,10 @@ def worker():
for x in imgs:
d = [
('Prompt', raw_prompt),
('Negative Prompt', raw_negative_prompt),
('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),

View File

@ -1,3 +1,8 @@
# 2.1.711
* Added more information about prompts in Private Log.
* Made wildcards in negative prompt use different seed.
# 2.1.710
* Added information about wildcards usage in console log.