mirror of https://github.com/vladmandic/automatic
parent
784f7faff6
commit
3f0a53f5e4
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -1,6 +1,6 @@
|
|||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-11-01
|
||||
## Update for 2025-11-02
|
||||
|
||||
- **Features**
|
||||
- **detailer**
|
||||
|
|
@ -10,17 +10,18 @@
|
|||
- add inline wildcards using curly braces syntax
|
||||
- add setting to control `cudnn` enable/disable
|
||||
- **Fixes**
|
||||
- fix: better handling of detailer settings, thanks @awsr
|
||||
- fix: cleanup `--optional` installer
|
||||
- fix: guard against multi-controlnet in hires
|
||||
- fix: update diffusers
|
||||
- fix: inpaint
|
||||
- fix: model type detection
|
||||
- fix: version detection when cloned with `.git` suffix
|
||||
- fix: init `sdnq` on video model load
|
||||
- fix: add vae scale override for chrono
|
||||
- fix: add tracing to model detection
|
||||
- ui: fix full-screen image viewer buttons with non-standard ui theme
|
||||
- ui: control tab show override section
|
||||
- fix: inpaint handling
|
||||
- fix: model type detection
|
||||
- fix: version detection when cloned with `.git` suffix, thanks @awsr
|
||||
- fix: init `sdnq` on video model load
|
||||
- fix: add vae scale override for chrono
|
||||
- fix: add tracing to model detection
|
||||
- ui: fix full-screen image viewer buttons with non-standard ui theme
|
||||
- ui: control tab show override section
|
||||
|
||||
## Update for 2025-10-31
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import sys
|
|||
|
||||
|
||||
try:
|
||||
default_min_time = float(os.environ.get('SD_MIN_TIMER', '0.05'))
|
||||
default_min_time = float(os.environ.get('SD_MIN_TIMER', '0.1'))
|
||||
except Exception:
|
||||
default_min_time = 0.1
|
||||
|
||||
|
|
|
|||
|
|
@ -208,7 +208,6 @@ def create_ui():
|
|||
if (section_id, section_text) not in sections:
|
||||
sections.append((section_id, section_text))
|
||||
|
||||
shared.log.debug(f'Settings: sections={len(sections)} settings={len(shared.opts.list())}/{len(list(shared.opts.data_labels))} quicksettings={len(quicksettings_list)}')
|
||||
with gr.Tabs(elem_id="settings"):
|
||||
quicksettings_list.clear()
|
||||
for (section_id, section_text) in sections:
|
||||
|
|
@ -241,6 +240,8 @@ def create_ui():
|
|||
create_dirty_indicator("show_all_pages", [])
|
||||
request_notifications = gr.Button(value='Request browser notifications', elem_id="request_notifications", visible=False)
|
||||
|
||||
shared.log.debug(f'Settings: sections={len(sections)} settings={len(shared.opts.list())}/{len(list(shared.opts.data_labels))} quicksettings={len(quicksettings_list)}')
|
||||
|
||||
with gr.TabItem("Update", id="system_update", elem_id="tab_update"):
|
||||
from modules import update
|
||||
update.create_ui()
|
||||
|
|
|
|||
Loading…
Reference in New Issue