diff --git a/CHANGELOG.md b/CHANGELOG.md index a790d8a92..87f9e3d30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2026-04-06 +## Update for 2026-04-07 - **Models** - [AiArtLab SDXS-1B](https://huggingface.co/AiArtLab/sdxs-1b) Simple Diffusion XS *(training still in progress)* @@ -9,6 +9,8 @@ - **ROCm** futher work on advanced configuration and tuning, thanks @resonantsky now covers both ROCm on Windows and Linux see *main interface -> scripts -> rocm advanced config* +- **Obsoleted** + - remove *system-info* from *extensions-builtin* - **Internal** - additional typing and typechecks, thanks @awsr - wrap hf download methods diff --git a/modules/sd_models_utils.py b/modules/sd_models_utils.py index 1f3585718..ffacb0102 100644 --- a/modules/sd_models_utils.py +++ b/modules/sd_models_utils.py @@ -41,6 +41,8 @@ def path_to_repo(checkpoint_info): repo_id = repo_id.replace('\\', '/') if repo_id.startswith('Diffusers/'): repo_id = repo_id.split('Diffusers/')[-1] + if repo_id.startswith('huggingface/'): + repo_id = repo_id.split('huggingface/')[-1] if repo_id.startswith('models--'): repo_id = repo_id.split('models--')[-1] repo_id = repo_id.replace('--', '/')