diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a9e5ea70..d5ffd9016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Another big one... you can specify: prompt, negative prompt, steps, denoise start - fix loading from pure safetensors files now you can load sd-xl from safetensors file or from huggingface folder format - - fix kandinsky model + - fix kandinsky model (2.1 working, 2.2 was just released and will be soon) - other: - major refactoring of the javascript code includes fixes for text selections and navigation diff --git a/TODO.md b/TODO.md index ce756c19b..0686ed58a 100644 --- a/TODO.md +++ b/TODO.md @@ -8,14 +8,15 @@ Stuff to be fixed, in no particular order... - SD-XL Img2Img/Inpaint - Kandinsky 2.2 (2.1 is working) - Refresh `sd_checkpoint` pulldown on backend switch -- Extensions misteriously auto-enabling -- VAE/UNet dtypes -- Attention head +- Misterious Extensions auto-enabling +- Misterious Extra network corruptions ## Features Stuff to be added, in no particular order... +- VAE/UNet dtypes +- Attention head - Update `Wiki` - Create new `GitHub` hooks/actions for CI/CD - Import core repos diff --git a/modules/sd_models.py b/modules/sd_models.py index 0cc522410..4bfa6d65b 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -819,14 +819,14 @@ class DiffusersTaskType(Enum): def set_diffuser_pipe(pipe, new_pipe_type): wrapper_pipe = None - sd_checkpoint_info = pipe.sd_checkpoint_info - sd_model_checkpoint = pipe.sd_model_checkpoint - sd_model_hash = pipe.sd_model_hash - if pipe.__class__ == PriorPipeline: wrapper_pipe = pipe pipe = pipe.main + sd_checkpoint_info = pipe.sd_checkpoint_info + sd_model_checkpoint = pipe.sd_model_checkpoint + sd_model_hash = pipe.sd_model_hash + pipe_name = pipe.__class__.__name__ pipe_name = pipe_name.replace("Img2Img", "").replace("Inpaint", "") new_pipe_cls_str = None diff --git a/wiki b/wiki index b3effd56a..a0cc6ecfd 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit b3effd56a6c46f7d814df7eec95241ee3715a703 +Subproject commit a0cc6ecfd2de73815daabdfd4b85b5f376e84774