From de24088322dbf5453e6bbd9ebce1fceeacab94f4 Mon Sep 17 00:00:00 2001 From: AUTOMATIC1111 <16777216c@gmail.com> Date: Wed, 11 Jan 2023 19:02:28 +0300 Subject: [PATCH] Updated Seed breaking changes (markdown) --- Seed-breaking-changes.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Seed-breaking-changes.md b/Seed-breaking-changes.md index f667df2..5c8878c 100644 --- a/Seed-breaking-changes.md +++ b/Seed-breaking-changes.md @@ -1,3 +1,14 @@ +# 2023-01-23 - Alternating words syntax bugfix +If you used alternating words syntax bugfix with emphasis before 97ff69eff338c6641f4abf430bf5ac112c1775e0, the program would incorrectly replace emphasized part with just `(`. So, `[a|(b:1.1)]`, rather than becoming a sequence of + +`a` -> `(b:1.1)` -> `a` -> `(b:1.1)` -> ... + +becomes + +`a` -> `(` -> `a` -> `(` -> ... + +The bug was fixed. If you need to reproduce old seeds, put the opening parenthesis into your prompt yourself (`[a|\(]`) + # 2023-01-03 - Hires fix rework Rather than using width/height to specify target resolution, width/height is used to specify first pass resolution, and resulting resolution is either set using "Scale by" multiplier (Hires upscale), or directly using "Resize width to" and/or "Resize height to" (Hires resize).