From d9fa2c4a62293217cde295e2c26941a00ed5d0d7 Mon Sep 17 00:00:00 2001 From: JeLuF Date: Sun, 25 Sep 2022 10:31:04 +0200 Subject: [PATCH 1/3] Advanced settings have been renamed The advanced settings have been renamed to image settings and system settings in the Web UI. --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf88a8e5..8b18d9b9 100644 --- a/README.md +++ b/README.md @@ -77,12 +77,17 @@ You can use Face Correction or Upscaling to improve the image further. ## Problems? Troubleshooting Please try the common [troubleshooting](Troubleshooting.md) steps. If that doesn't fix it, please ask on the [discord server](https://discord.com/invite/u9yhsFmEkB), or [file an issue](https://github.com/cmdr2/stable-diffusion-ui/issues). -# Advanced Settings -You can also set the configuration like `seed`, `width`, `height`, `num_outputs`, `num_inference_steps` and `guidance_scale` using the 'show' button next to 'Advanced settings'. +# Image Settings +You can also set the configuration like `seed`, `width`, `height`, `num_outputs`, `num_inference_steps` and `guidance_scale` using the 'show' button next to 'Image settings'. Use the same `seed` number to get the same image for a certain prompt. This is useful for refining a prompt without losing the basic image design. Enable the `random images` checkbox to get random images. ![Screenshot of advanced settings](media/config-v6.jpg?raw=true) + +# System Settings +The system settings are reachable via the cogwheel symbol on the top right. It can be used to configure whether all generated images should +saved be automically, or to tune the Stable Diffusion image generation. + ![Screenshot of advanced settings](media/system-settings-v2.jpg?raw=true) # Image Modifiers From 939dd0b2079be371733893f8d1611bace555883d Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Mon, 26 Sep 2022 23:02:03 +0530 Subject: [PATCH 2/3] Empty the post-activate hook only if it exists --- scripts/Start Stable Diffusion UI.cmd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/Start Stable Diffusion UI.cmd b/scripts/Start Stable Diffusion UI.cmd index f3af626c..2f3e32f9 100644 --- a/scripts/Start Stable Diffusion UI.cmd +++ b/scripts/Start Stable Diffusion UI.cmd @@ -1,7 +1,9 @@ @echo off @REM Delete the post-activate hook from the old installer -echo. > installer\etc\conda\activate.d\post_activate.bat +if exist "installer\etc\conda\activate.d\post_activate.bat" ( + echo. > installer\etc\conda\activate.d\post_activate.bat +) @call installer\Scripts\activate.bat From a10c4f7a34670f765139fb8b7a6dd200e5f25d6b Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Mon, 26 Sep 2022 23:11:21 +0530 Subject: [PATCH 3/3] v2.16 links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf88a8e5..6cd735ec 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ This distribution currently uses Stable Diffusion 1.4. Once the model for 1.5 be You do not need anything else. You do not need WSL, Docker or Conda. The installer will take care of it. # Installation -1. **Download** [for Windows](https://github.com/cmdr2/stable-diffusion-ui/releases/download/v2.05/stable-diffusion-ui-win64.zip) or [for Linux](https://github.com/cmdr2/stable-diffusion-ui/releases/download/v2.05/stable-diffusion-ui-linux.tar.xz). +1. **Download** [for Windows](https://github.com/cmdr2/stable-diffusion-ui/releases/download/v2.16/stable-diffusion-ui-win64.zip) or [for Linux](https://github.com/cmdr2/stable-diffusion-ui/releases/download/v2.16/stable-diffusion-ui-linux.tar.xz). 2. **Extract**: - For Windows: After unzipping the file, please move the `stable-diffusion-ui` folder to your `C:` (or any drive like D:, at the top root level), e.g. `C:\stable-diffusion-ui`. This will avoid a common problem with Windows (file path length limits).