add legacy mode indicator on splash screen

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-01-18 11:54:03 -05:00
parent ae9b40c688
commit bdf8ca7e27
2 changed files with 6 additions and 4 deletions
+4 -4
View File
@@ -2,10 +2,10 @@
## Update for 2025-01-17
- **Upscale**
- code refactor to unify latent, resize and model based upscalers
- **Gallery**:
- add http fallback for slow/unreliable links
- **Other**:
- **gallery**: add http fallback for slow/unreliable links
- **upscale**: code refactor to unify latent, resize and model based upscalers
- **splash**: add legacy mode indicator on splash screen
- **Fixes**:
- non-full vae decode
- send-to image transfer
+2
View File
@@ -16,6 +16,8 @@ def get_motd():
ver = shared.get_version()
if ver.get('updated', None) is not None:
motd = f"version <b>{ver['hash']} {ver['updated']}</b> <span style='color: var(--primary-500)'>{ver['url'].split('/')[-1]}</span><br>"
if not shared.native:
motd += "<span style='color: orange'>Legacy mode</span><br>"
if shared.opts.motd:
try:
res = requests.get('https://vladmandic.github.io/automatic/motd', timeout=3)