Skip to content

Commit

Permalink
nodes files renamed, Random Multiline Colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Suzie1 committed Dec 28, 2023
1 parent e0cafae commit 1b2fbfd
Show file tree
Hide file tree
Showing 24 changed files with 2,156 additions and 1,178 deletions.
15 changes: 10 additions & 5 deletions Patch_Notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 🧩 Comfyroll Custom Nodes - Patch Notes

## v1.52 Dec 27, 2023
- added CR Random Multiline Colors
- updated CR Random Multiline Values, removed hex color option
- changed naming convention on nodes files

## v1.52 Dec 27, 2023
- added CR Load Text List
- added CR Save Text To File
Expand All @@ -15,8 +20,8 @@
## v1.49 Dec 25, 2023
- added CR Draw Pie
- added CR_Random Shape Pattern
- updated CR Random Multiline Values
- updated CR Image Output
- updated CR Random Multiline Values, added natural numbers and hex color options
- updated CR Image Output, added UI (no batch) preview mode

## v1.48 Dec 24, 2023
- added CR Draw Shape
Expand All @@ -25,7 +30,7 @@
## v1.47 Dec 23, 2023
- added CR Load Image List
- added CR Load Image List Plus
- updated CR Font File List
- updated CR Font File List, added select from path

## v1.46 Dec 22, 2023
- PR70 fixed issue #62 with RGB output from gradient nodes
Expand All @@ -35,7 +40,7 @@
- added CR Vignette Filter

## PR76 Dec 19, 2023
- updated CR Font File List
- updated CR Font File List, added from folder options
- added CR Text List

## PR73 Dec 18, 2023
Expand All @@ -47,7 +52,7 @@
- added CR Aspect Ratio Banners
- added CR Font File List
- added CR Simple Image Compare
- updated logic nodes to make inputs optional
- updated logic nodes to make all inputs optional

## PR67 Dec 18, 2023
- added CR Simple Banner
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Co-authored by Suzie1 and RockOfFire

Current version: 1.52
Current version: 1.53

# Wiki

Expand Down Expand Up @@ -170,7 +170,7 @@ __🔀 Logic__
__🎲 Random__
* CR Random Hex Color
* CR Random RGB
* CR Random Multiline Values (updated 26/12/2023)
* CR Random Multiline Values (updated 28/12/2023)
* CR Random RGB Gradient (new 8/12/2023)
* CR Random Panel Code (new 26/12/2023)

Expand Down
40 changes: 21 additions & 19 deletions live_node_mappings.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
from .nodes.nodes import *
from .nodes.legacy_nodes import *
from .nodes.lora import *
from .nodes.controlnet import *
from .nodes.pipe import *
from .nodes.sdxl import *
from .nodes.logic import *
from .nodes.model_merge import *
from .nodes.upscale import *
from .nodes.xygrid import *
from .nodes.index import *
from .nodes.conversion import *
from .nodes.matplot import *
from .nodes.pil_text import *
from .nodes.pil_layout import *
from .nodes.pil_filter import *
from .nodes.pil_template import *
from .nodes.pil_pattern import *
from .nodes.nodes_random import *
from .nodes.nodes_list import *
from .nodes.nodes_aspect_ratio import *
from .nodes.nodes_list import *
from .nodes.nodes_lora import *
from .nodes.nodes_controlnet import *
from .nodes.nodes_pipe import *
from .nodes.nodes_sdxl import *
from .nodes.nodes_model_merge import *
from .nodes.nodes_upscale import *
from .nodes.nodes_xygrid import *
from .nodes.nodes_graphics_matplot import *
from .nodes.nodes_graphics_text import *
from .nodes.nodes_graphics_layout import *
from .nodes.nodes_graphics_filter import *
from .nodes.nodes_graphics_template import *
from .nodes.nodes_graphics_pattern import *
from .nodes.nodes_utils_logic import *
from .nodes.nodes_utils_index import *
from .nodes.nodes_utils_conversion import *
from .nodes.nodes_utils_random import *
from .nodes.nodes_legacy import *

from .animation_nodes.interpolation import *
from .animation_nodes.io import *
Expand Down Expand Up @@ -172,6 +172,7 @@
"CR Random Hex Color": CR_RandomHexColor,
"CR Random RGB": CR_RandomRGB,
"CR Random Multiline Values": CR_RandomMultilineValues,
"CR Random Multiline Colors": CR_RandomMultilineColors,
"CR Random RGB Gradient": CR_RandomRGBGradient,
"CR Random Panel Codes": CR_RandomPanelCodes,
#------------------------------------------------------
Expand Down Expand Up @@ -374,6 +375,7 @@
"CR Random Hex Color": "🎲 CR Random Hex Color",
"CR Random RGB": "🎲 CR Random RGB",
"CR Random Multiline Values": "🎲 CR Random Multiline Values",
"CR Random Multiline Colors": "🎲 CR Random Multiline Colors",
"CR Random RGB Gradient": "🎲 CR Random RGB Gradient",
"CR Random Panel Codes": "🎲 CR Random Panel Codes",
#------------------------------------------------------
Expand Down
File renamed without changes.
Loading

0 comments on commit 1b2fbfd

Please sign in to comment.