This commit is contained in:
justumen
2024-09-15 13:36:50 +02:00
parent 30b7f71bc3
commit 5b412a1243
3 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# 🔗 Comfyui : Bjornulf_custom_nodes v0.31 🔗 # 🔗 Comfyui : Bjornulf_custom_nodes v0.32 🔗
# ❤️ Coffee : ☕☕☕☕☕ 5/5 # ❤️ Coffee : ☕☕☕☕☕ 5/5
@@ -79,6 +79,7 @@ wget --content-disposition -P /workspace/ComfyUI/models/checkpoints "https://civ
- **v0.29**: Fix floating points issues with loop float node. - **v0.29**: Fix floating points issues with loop float node.
- **v0.30**: Update the basic Loop node with optional input. - **v0.30**: Update the basic Loop node with optional input.
- **v0.31**: ❗Sorry, Breaking changes for Write/Show text nodes, cleaner system : 1 simple write text and the other is 1 advanced with console and special syntax. Also Show can now manage INT, FLOAT, TEXT. - **v0.31**: ❗Sorry, Breaking changes for Write/Show text nodes, cleaner system : 1 simple write text and the other is 1 advanced with console and special syntax. Also Show can now manage INT, FLOAT, TEXT.
- **v0.32**: Quick rename to avoid breaking loop_text node.
# 📝 Nodes descriptions # 📝 Nodes descriptions

View File

@@ -43,10 +43,10 @@ from .pause_resume_stop import PauseResume
from .pick_input import PickInput from .pick_input import PickInput
from .loop_images import LoopImages from .loop_images import LoopImages
from .random_image import RandomImage from .random_image import RandomImage
from .loop_write_text import LoopWriteText
# from .random_checkpoint import RandomCheckpoint # from .random_checkpoint import RandomCheckpoint
from .loop_model_clip_vae import LoopModelClipVae from .loop_model_clip_vae import LoopModelClipVae
from .write_text_advanced import WriteTextAdvanced from .write_text_advanced import WriteTextAdvanced
from .loop_write_text import LoopWriteText
# from .show import ShowWhatever # from .show import ShowWhatever
# from .pass_preview_image import PassPreviewImage # from .pass_preview_image import PassPreviewImage
@@ -115,7 +115,7 @@ NODE_CLASS_MAPPINGS = {
NODE_DISPLAY_NAME_MAPPINGS = { NODE_DISPLAY_NAME_MAPPINGS = {
"Bjornulf_WriteText": "✒ Write Text", "Bjornulf_WriteText": "✒ Write Text",
"Bjornulf_WriteTextAdvanced": "✒🗔 Advanced Write Text", "Bjornulf_WriteTextAdvanced": "✒🗔 Advanced Write Text",
"Bjornulf_LoopWriteTextAdvanced": "♻ Loop (✒🗔 Advanced Write Text)", "Bjornulf_LoopWriteText": "♻ Loop (✒🗔 Advanced Write Text)",
"Bjornulf_LoopModelClipVae": "♻ Loop (Model+Clip+Vae)", "Bjornulf_LoopModelClipVae": "♻ Loop (Model+Clip+Vae)",
"Bjornulf_LoopImages": "♻🖼 Loop (Images)", "Bjornulf_LoopImages": "♻🖼 Loop (Images)",
"Bjornulf_CombineTextsByLines": "♻ Loop (All Lines from input 🔗 combine by lines)", "Bjornulf_CombineTextsByLines": "♻ Loop (All Lines from input 🔗 combine by lines)",

View File

@@ -1,7 +1,7 @@
[project] [project]
name = "bjornulf_custom_nodes" name = "bjornulf_custom_nodes"
description = "Nodes: Ollama, Text to Speech, Combine Texts, Random Texts, Save image for Bjornulf LobeChat, Text with random Seed, Random line from input, Combine images, Image to grayscale (black & white), Remove image Transparency (alpha), Resize Image, ..." description = "Nodes: Ollama, Text to Speech, Combine Texts, Random Texts, Save image for Bjornulf LobeChat, Text with random Seed, Random line from input, Combine images, Image to grayscale (black & white), Remove image Transparency (alpha), Resize Image, ..."
version = "0.31" version = "0.32"
license = {file = "LICENSE"} license = {file = "LICENSE"}
[project.urls] [project.urls]