update changelog

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2026-04-07 15:24:42 +02:00
parent c583b24f25
commit bfc018fed4
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -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
+2
View File
@@ -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('--', '/')