From 7046983d9538d49d1dd286a513aa6db42b9a74fd Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sat, 17 May 2025 03:45:36 +1000 Subject: [PATCH 1/2] Remove Desktop versioning claim from README (#8155) --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index dcdaa353c2d..9b5f301c99b 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,6 @@ ComfyUI follows a weekly release cycle every Friday, with three interconnected r 2. **[ComfyUI Desktop](https://github.com/Comfy-Org/desktop)** - Builds a new release using the latest stable core version - - Version numbers match the core release (e.g., Desktop v1.7.0 uses Core v1.7.0) 3. **[ComfyUI Frontend](https://github.com/Comfy-Org/ComfyUI_frontend)** - Weekly frontend updates are merged into the core repository From dc46db7aa48acd035dfc10730a064a9c994fb76b Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Fri, 16 May 2025 12:15:55 -0700 Subject: [PATCH 2/2] Make ImagePadForOutpaint return a 3 channel mask. (#8157) --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 0a9db139351..95e831b8b43 100644 --- a/nodes.py +++ b/nodes.py @@ -1940,7 +1940,7 @@ def expand_image(self, image, left, top, right, bottom, feathering): mask[top:top + d2, left:left + d3] = t - return (new_image, mask) + return (new_image, mask.unsqueeze(0)) NODE_CLASS_MAPPINGS = {