update notes

This commit is contained in:
Vladimir Mandic
2024-05-22 08:57:16 -04:00
parent 28ad605f29
commit f510e16d51
4 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -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
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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: