From 42fb7168df5d6322882e5faf8f727ba12425fb1c Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Mon, 28 Oct 2024 11:43:22 -0400 Subject: [PATCH] update changelog Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 4 +++- modules/scripts.py | 6 ++++++ wiki | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 764ab83a7..c955f0ce3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2024-10-27 +## Update for 2024-10-28 improvements: - model selector: @@ -26,6 +26,8 @@ improvements: - ipadapter: - list available adapters based on loaded model type - add adapter `ostris consistency` for sd15/sdxl +- detailer: + - add `[prompt]` to refine/defailer prompts as placeholder referencing original prompt - torch - CUDA set device memory limit in *settings -> compute settings -> torch memory limit* diff --git a/modules/scripts.py b/modules/scripts.py index 15da9c070..8a67d0a50 100644 --- a/modules/scripts.py +++ b/modules/scripts.py @@ -3,6 +3,7 @@ import sys import time from collections import namedtuple +from dataclasses import dataclass import gradio as gr from modules import paths, script_callbacks, extensions, script_loading, scripts_postprocessing, errors, timer @@ -23,6 +24,11 @@ def __init__(self, images): self.images = images +@dataclass +class OnComponent: + component: gr.blocks.Block + + class Script: parent = None name = None diff --git a/wiki b/wiki index 84d0a46e9..23cc41bc4 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 84d0a46e9d686dd971d51ae2c1d29e60e57bf233 +Subproject commit 23cc41bc44ce06a9f6620452817f3cbfbed86f84