diff --git a/README.md b/README.md index 19167fd..d232f98 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 🔗 Comfyui : Bjornulf_custom_nodes v1.1.2 🔗 +# 🔗 Comfyui : Bjornulf_custom_nodes v1.1.3 🔗 A list of 168 custom nodes for Comfyui : Display, manipulate, create and edit text, images, videos, loras, generate characters and more. You can manage looping operations, generate randomized content, trigger logical conditions, pause and manually control your workflows and even work with external AI tools, like Ollama or Text To Speech. diff --git a/line_selector.py b/line_selector.py index 60c46e3..f9a4321 100644 --- a/line_selector.py +++ b/line_selector.py @@ -24,7 +24,7 @@ class LineSelector: }, "optional": { "variables": ("STRING", {"multiline": True, "forceInput": True}), - "seed": ("INT", {"default": -1, "min": -1, "max": 0x7FFFFFFFFFFFFFFF}), + #"seed": ("INT", {"default": -1, "min": -1, "max": 0x7FFFFFFFFFFFFFFF}), }, } @@ -251,8 +251,8 @@ class LineSelector: return ([selected], 0, line_number if line_number > 0 else 0) @classmethod - def IS_CHANGED(s, text, line_number, RANDOM, LOOP, LOOP_SEQUENTIAL, jump, pick_random_variable, variables="", seed=-1): - return float("NaN") if LOOP_SEQUENTIAL else (text, line_number, RANDOM, LOOP, LOOP_SEQUENTIAL, jump, pick_random_variable, variables, seed) + def IS_CHANGED(cls, **kwargs): + return float("NaN") @PromptServer.instance.routes.post("/reset_line_selector_counter") async def reset_line_selector_counter(request): diff --git a/pyproject.toml b/pyproject.toml index 4737d09..9f66b0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "bjornulf_custom_nodes" description = "168 ComfyUI nodes : Display, manipulate, and edit text, images, videos, loras, generate characters and more. Manage looping operations, generate randomized content, use logical conditions and work with external AI tools, like Ollama or Text To Speech, etc..." -version = "1.1.2" +version = "1.1.3" license = {file = "LICENSE"} [project.urls]