mirror of https://github.com/vladmandic/automatic
parent
e529fcc546
commit
4e74172f3a
|
|
@ -1,8 +1,8 @@
|
|||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-09-12
|
||||
## Update for 2025-09-13
|
||||
|
||||
### Highlights for 2025-09-12
|
||||
### Highlights for 2025-09-13
|
||||
|
||||
*What's new*? Big one is that we're (finally) switching the default UI to **ModernUI**!
|
||||
StandardUI is still available and can be selected in settings, but ModernUI is now the default for new installs
|
||||
|
|
@ -12,7 +12,7 @@ Also, there are quite a few offloading improvements and many quality-of-life cha
|
|||
|
||||
[ReadMe](https://github.com/vladmandic/automatic/blob/master/README.md) | [ChangeLog](https://github.com/vladmandic/automatic/blob/master/CHANGELOG.md) | [Docs](https://vladmandic.github.io/sdnext-docs/) | [WiKi](https://github.com/vladmandic/automatic/wiki) | [Discord](https://discord.com/invite/sd-next-federal-batch-inspectors-1101998836328697867) | [Sponsor](https://github.com/sponsors/vladmandic)
|
||||
|
||||
### Details for 2025-09-12
|
||||
### Details for 2025-09-13
|
||||
|
||||
- **Models**
|
||||
- **Chroma** final versions: [Chroma1-HD](https://huggingface.co/lodestones/Chroma1-HD), [Chroma1-Base](https://huggingface.co/lodestones/Chroma1-Base) and [Chroma1-Flash](https://huggingface.co/lodestones/Chroma1-Flash)
|
||||
|
|
@ -34,6 +34,8 @@ Also, there are quite a few offloading improvements and many quality-of-life cha
|
|||
- default to **ModernUI**
|
||||
standard ui is still available via *settings -> user interface -> theme type*
|
||||
- mobile-friendly!
|
||||
- new **History** section in the right panel
|
||||
shows detailed job history plus timeline of the execution
|
||||
- make hints touch-friendly: hold touch to display hint
|
||||
- improved image scaling in img2img and control interfaces
|
||||
- add base model type to networks display, thanks @Artheriax
|
||||
|
|
|
|||
|
|
@ -546,7 +546,7 @@ def process_diffusers(p: processing.StableDiffusionProcessing):
|
|||
images, _index=shared.history.selected
|
||||
output = SimpleNamespace(images=images)
|
||||
|
||||
if (ouput is None or len(output.images) == 0) and has_images:
|
||||
if (output is None or len(output.images) == 0) and has_images:
|
||||
shared.log.debug('Processing: using input as base output')
|
||||
output.images = p.init_images
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue