diff --git a/CHANGELOG.md b/CHANGELOG.md index ab3a0783e..5fe980cb9 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/modules/timer.py b/modules/timer.py index d94735902..082e293b6 100644 --- a/modules/timer.py +++ b/modules/timer.py @@ -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 diff --git a/modules/ui_settings.py b/modules/ui_settings.py index 880871530..5a3cc5cdf 100644 --- a/modules/ui_settings.py +++ b/modules/ui_settings.py @@ -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()