From b7d46be530db3320108408cb4fa3e535947a9d03 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Mon, 9 Sep 2024 18:48:38 +0530 Subject: [PATCH] Use SD 1.4 instead of 1.5 during installation --- NSIS/sdui.nsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NSIS/sdui.nsi b/NSIS/sdui.nsi index 92bec886..2995328c 100644 --- a/NSIS/sdui.nsi +++ b/NSIS/sdui.nsi @@ -235,8 +235,8 @@ Section "MainSection" SEC01 CreateDirectory "$SMPROGRAMS\Easy Diffusion" CreateShortCut "$SMPROGRAMS\Easy Diffusion\Easy Diffusion.lnk" "$INSTDIR\Start Stable Diffusion UI.cmd" "" "$INSTDIR\installer_files\cyborg_flower_girl.ico" - DetailPrint 'Downloading the Stable Diffusion 1.5 model...' - NScurl::http get "https://github.com/easydiffusion/sdkit-test-data/releases/download/assets/sd-v1-5.safetensors" "$INSTDIR\models\stable-diffusion\sd-v1-5.safetensors" /CANCEL /INSIST /END + DetailPrint 'Downloading the Stable Diffusion 1.4 model...' + NScurl::http get "https://github.com/easydiffusion/sdkit-test-data/releases/download/assets/sd-v1-4.safetensors" "$INSTDIR\models\stable-diffusion\sd-v1-4.safetensors" /CANCEL /INSIST /END DetailPrint 'Downloading the GFPGAN model...' NScurl::http get "https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/GFPGANv1.4.pth" "$INSTDIR\models\gfpgan\GFPGANv1.4.pth" /CANCEL /INSIST /END