Signed-off-by: Vladimir Mandic <mandic00@live.com>
pull/4350/head
Vladimir Mandic 2025-11-02 06:29:17 -05:00
parent 784f7faff6
commit 3f0a53f5e4
3 changed files with 13 additions and 11 deletions

View File

@ -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

View File

@ -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

View File

@ -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()