update changelog

This commit is contained in:
Vladimir Mandic
2023-10-22 11:52:40 -04:00
parent fab013d31c
commit e8be0a8cdc
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -18,6 +18,8 @@ Service release addressing all zero-day issues reported so far...
- fix model path using relative path
- fix `torch-rocm` and `tensorflow-rocm` version detection, thanks @xangelix
- fix chainner upscalers color clipping
- fix for base+refiner workflow in diffusers mode: number of steps, diffuser pipe mode
- fix for prompt encoder with refiner in diffusers mode
- force second requirements check on startup
- remove lyco, multiple_tqdm
- enhance extension compatibility for exensions directly importing codeformers
+1 -1
View File
@@ -379,7 +379,7 @@ def list_available_networks():
if os.path.exists(shared.cmd_opts.lora_dir):
candidates += list(shared.walk_files(shared.cmd_opts.lora_dir, allowed_extensions=[".pt", ".ckpt", ".safetensors"]))
else:
shared.log.warning('LoRA directory not found: path={shared.cmd_opts.lora_dir}')
shared.log.warning('LoRA directory not found: path="{shared.cmd_opts.lora_dir}"')
if os.path.exists(shared.cmd_opts.lyco_dir):
candidates += list(shared.walk_files(shared.cmd_opts.lyco_dir, allowed_extensions=[".pt", ".ckpt", ".safetensors"]))
for filename in candidates: