diff --git a/CHANGELOG.md b/CHANGELOG.md index 2affef04b..42bf77ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ - **sd3** enable base LoRA support - **sd3** simplified loading of model in single-file safetensors format loading sd3 can now be performed fully offline +- extra networks: info display now contains link to source url if model if its known + works for civitai and huggingface models ### Fixes diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py index 7a49ce660..bd5238cfb 100644 --- a/modules/ui_extra_networks.py +++ b/modules/ui_extra_networks.py @@ -812,15 +812,22 @@ def create_ui(container, button_parent, tabname, skip_indexing = False):
| Type | {page.title} |
| Alias | {getattr(item, 'alias', 'N/A')} |
| Filename | {item.filename} |
| Hash | {getattr(item, 'hash', 'N/A')} |
| Size | {round(stat.st_size/1024/1024, 2) if stat is not None else 'N/A'} MB |
| Last modified | {datetime.fromtimestamp(stat.st_mtime) if stat is not None else 'N/A'} |
| Source URL | {url} |