diff --git a/CHANGELOG.md b/CHANGELOG.md index 9728fa4c9..eaf22f977 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2024-05-32 +## Update for 2024-05-22 - **Features**: - **ModernUI** preview of the new [ModernUI](https://github.com/BinaryQuantumSoul/sdnext-modernui) @@ -156,6 +156,7 @@ - Add `--reinstall-zluda` (to download the latest ZLUDA) - **Fixes**: - Update requirements + - Installer automatically handle detached git states - Prompt params parser - Allowing forcing LoRA loading method for some or all models - Image save without metadata diff --git a/TODO.md b/TODO.md index 0e3e71709..fddc272ed 100644 --- a/TODO.md +++ b/TODO.md @@ -12,7 +12,7 @@ Requires `diffusers-0.28.0.dev0`: ## Dev Release Notes -New [SD.Next](https://github.com/vladmandic/automatic) release has been baking in `dev` for a longer than usual, but changes are massive - over 320 commits... +New [SD.Next](https://github.com/vladmandic/automatic) release has been baking in `dev` for a longer than usual, but changes are massive - over 330 commits... Starting with the new UI - yup, this version ships with a *preview* of the new [ModernUI](https://github.com/BinaryQuantumSoul/sdnext-modernui) For details on how to enable and use it, see [Home](https://github.com/BinaryQuantumSoul/sdnext-modernui) and [WiKi](https://github.com/vladmandic/automatic/wiki/Themes) diff --git a/extensions-builtin/sdnext-modernui b/extensions-builtin/sdnext-modernui index 71cc49ea2..80772e0dd 160000 --- a/extensions-builtin/sdnext-modernui +++ b/extensions-builtin/sdnext-modernui @@ -1 +1 @@ -Subproject commit 71cc49ea2434cce011ff21089a8cb394cd74a959 +Subproject commit 80772e0dd0907506541b31a3d19c451cde33418e diff --git a/installer.py b/installer.py index 101dcf915..986620116 100644 --- a/installer.py +++ b/installer.py @@ -301,7 +301,7 @@ def branch(folder=None): b = [x for x in branches if x.startswith('*')][0] if 'detached' in b and len(branches) > 1: b = branches[1].strip() - log.debug(f'Git detached head detected: folder={folder} reattach={b}') + log.debug(f'Git detached head detected: folder="{folder}" reattach={b}') except Exception: b = git('git rev-parse --abbrev-ref HEAD', folder) if 'main' in b: