Skip to content

Commit 74b5a33

Browse files
fix: move essentials_category to correct replacement nodes (Comfy-Org#12568)
Move essentials_category from deprecated/incorrect nodes to their replacements: - ImageBatch → BatchImagesNode (ImageBatch is deprecated) - Blur → removed (should use subgraph blueprint) - GetVideoComponents → Video Slice Amp-Thread-ID: https://ampcode.com/threads/T-019c8340-4da2-723b-a09f-83895c5bbda5
1 parent 8a4d85c commit 74b5a33

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

comfy_extras/nodes_post_processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def define_schema(cls):
7979
node_id="ImageBlur",
8080
display_name="Image Blur",
8181
category="image/postprocessing",
82-
essentials_category="Image Tools",
8382
inputs=[
8483
io.Image.Input("image"),
8584
io.Int.Input("blur_radius", default=1, min=1, max=31, step=1),
@@ -568,6 +567,7 @@ def define_schema(cls):
568567
node_id="BatchImagesNode",
569568
display_name="Batch Images",
570569
category="image",
570+
essentials_category="Image Tools",
571571
search_aliases=["batch", "image batch", "batch images", "combine images", "merge images", "stack images"],
572572
inputs=[
573573
io.Autogrow.Input("images", template=autogrow_template)

comfy_extras/nodes_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ def define_schema(cls):
147147
search_aliases=["extract frames", "split video", "video to images", "demux"],
148148
display_name="Get Video Components",
149149
category="image/video",
150-
essentials_category="Video Tools",
151150
description="Extracts all components from a video: frames, audio, and framerate.",
152151
inputs=[
153152
io.Video.Input("video", tooltip="The video to extract components from."),
@@ -218,6 +217,7 @@ def define_schema(cls):
218217
"start time",
219218
],
220219
category="image/video",
220+
essentials_category="Video Tools",
221221
inputs=[
222222
io.Video.Input("video"),
223223
io.Float.Input(

nodes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1925,7 +1925,6 @@ def invert(self, image):
19251925

19261926
class ImageBatch:
19271927
SEARCH_ALIASES = ["combine images", "merge images", "stack images"]
1928-
ESSENTIALS_CATEGORY = "Image Tools"
19291928

19301929
@classmethod
19311930
def INPUT_TYPES(s):

0 commit comments

Comments
 (0)