From bdf8ca7e278544163bf34e2170a022293b606b53 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 18 Jan 2025 11:54:03 -0500 Subject: [PATCH] add legacy mode indicator on splash screen Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 8 ++++---- modules/api/server.py | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 281fc7a01..de7142e81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/modules/api/server.py b/modules/api/server.py index dabbe634c..87de2d897 100644 --- a/modules/api/server.py +++ b/modules/api/server.py @@ -16,6 +16,8 @@ def get_motd(): ver = shared.get_version() if ver.get('updated', None) is not None: motd = f"version {ver['hash']} {ver['updated']} {ver['url'].split('/')[-1]}
" + if not shared.native: + motd += "Legacy mode
" if shared.opts.motd: try: res = requests.get('https://vladmandic.github.io/automatic/motd', timeout=3)