diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c729a613..d73710c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2024-02-17 +## Update for 2024-02-18 - **Improvements**: - **IP Adapter** major refactor @@ -91,6 +91,7 @@ - fix controlnet inpaint mask - fix theme list refresh - fix extensions update information in ui + - fix model merge manual merge settings, thanks @AI-Casanova - bind controlnet extension to last known working commit, thanks @Aptronymist - prompts-from-file fix resizable prompt area diff --git a/TODO.md b/TODO.md index 1e98c5712..4d73062c2 100644 --- a/TODO.md +++ b/TODO.md @@ -7,6 +7,7 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma - stable cascade - init latents, variations, tiling - lora sliders: +- x-adapoter: - diffusers public callbacks - image2video: pia and vgen pipelines - video2video diff --git a/modules/processing_class.py b/modules/processing_class.py index a740cf098..05bfec177 100644 --- a/modules/processing_class.py +++ b/modules/processing_class.py @@ -104,6 +104,7 @@ class StableDiffusionProcessing: self.s_tmax = float('inf') # not representable as a standard ui option self.task_args = {} # a1111 compatibility items + self.batch_index = 0 self.refiner_switch_at = 0 self.hr_prompt = '' self.all_hr_prompts = []