mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 17:24:32 +02:00
+5
-3
@@ -1,8 +1,8 @@
|
||||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-01-16
|
||||
## Update for 2025-01-18
|
||||
|
||||
### Highlights for 2025-01-16
|
||||
### Highlights for 2025-01-18
|
||||
|
||||
First release of 2026 brings quite a few new models: **Flux.2-Klein, Qwen-Image-2512, LTX-2-Dev, GLM-Image**
|
||||
There are also improvements to SDNQ quantization engine, updated Prompt Enhance and many others
|
||||
@@ -10,7 +10,7 @@ Plus some significant under-the-hood changes to improve code coverage and qualit
|
||||
|
||||
[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-01-16
|
||||
### Details for 2025-01-18
|
||||
|
||||
- **Models**
|
||||
- [Flux.2 Klein](https://bfl.ai/blog/flux2-klein-towards-interactive-visual-intelligence)
|
||||
@@ -57,6 +57,7 @@ Plus some significant under-the-hood changes to improve code coverage and qualit
|
||||
- improve extensions tab layout and behavior, thanks @awsr
|
||||
- indicate collapsed/hidden sections
|
||||
- persistent panel minimize/maximize state
|
||||
- gallery improve sorting behavior
|
||||
- **Internal**
|
||||
- update js linting to `eslint9`, thanks @awsr
|
||||
- update strong typing checks, thanks @awsr
|
||||
@@ -94,6 +95,7 @@ Plus some significant under-the-hood changes to improve code coverage and qualit
|
||||
- reduce triton test verbosity
|
||||
- improve qwen i2i handling
|
||||
- networks filter by model type
|
||||
- netoworks icon/list view type switch, thanks @awsr
|
||||
|
||||
## Update for 2025-12-26
|
||||
|
||||
|
||||
@@ -325,9 +325,6 @@ def process_samples(p: StableDiffusionProcessing, samples):
|
||||
if p.color_corrections is not None and i < len(p.color_corrections):
|
||||
p.ops.append('color')
|
||||
if not p.do_not_save_samples and shared.opts.save_images_before_color_correction:
|
||||
orig = p.color_corrections
|
||||
p.color_corrections = None
|
||||
p.color_corrections = orig
|
||||
image_without_cc = apply_overlay(image, p.paste_to, i, p.overlay_images)
|
||||
info = create_infotext(p, p.prompts, p.seeds, p.subseeds, index=i)
|
||||
images.save_image(image_without_cc, path=p.outpath_samples, basename="", seed=p.seeds[i], prompt=p.prompts[i], extension=shared.opts.samples_format, info=info, p=p, suffix="-before-color-correct")
|
||||
|
||||
@@ -748,7 +748,6 @@ options_templates.update(options_section(('extra_networks', "Networks"), {
|
||||
"lora_apply_tags": OptionInfo(0, "LoRA auto-apply tags", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}),
|
||||
"lora_in_memory_limit": OptionInfo(1, "LoRA memory cache", gr.Slider, {"minimum": 0, "maximum": 32, "step": 1}),
|
||||
"lora_add_hashes_to_infotext": OptionInfo(False, "LoRA add hash info to metadata"),
|
||||
#"lora_quant": OptionInfo("NF4","LoRA precision when quantized", gr.Radio, {"choices": ["NF4", "FP4"]}), setting not yet implemented
|
||||
|
||||
"extra_networks_styles_sep": OptionInfo("<h2>Styles</h2>", "", gr.HTML),
|
||||
"extra_networks_styles": OptionInfo(True, "Show reference styles"),
|
||||
|
||||
Reference in New Issue
Block a user