This commit is contained in:
justumen
2025-05-19 20:00:44 +02:00
parent b9dffcfb96
commit 18b59b9343
3 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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