Skip to content

Commit c0d36b4

Browse files
committed
1.10.2
1 parent 9c17866 commit c0d36b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

node/load.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ class KontextReference:
11471147
@classmethod
11481148
def INPUT_TYPES(s):
11491149
return {"required": {
1150-
"img_size": ("INT", {"default": 1024, "min": 0, "max": 4096, "step": 1}),
1150+
"img_size": ("INT", {"default": 0, "min": 0, "max": 4096, "step": 1}),
11511151
"conditioning": ("CONDITIONING", ),
11521152
"vae": ("VAE", ),
11531153
},
@@ -1174,7 +1174,7 @@ def append(s, img_size, conditioning, vae, image, image2=None, image3=None):
11741174
width, height = img_size, img_size
11751175
for img in img_list:
11761176
if img is not None:
1177-
image = ALL_NODE["SDVN Image Layout"]().layout("row", "", "left", 40, image, image2, image3)[0]
1177+
img = ALL_NODE["SDVN Image Layout"]().layout(["row"], [height],[""], ["left"], [40], [image], [image2], [image3])[0]
11781178
latent = ALL_NODE["VAEEncode"]().encode(vae, img)[0]
11791179
break
11801180
else:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "sdvn_comfy_node"
3-
description = "Update support Flux kontext dev, fix, optimal"
4-
version = "1.10.1"
3+
description = "Update Kontext Ref, Mask overlay, and more"
4+
version = "1.10.2"
55
license = {file = "LICENSE"}
66
dependencies = ["#If MacOs - Please install aria2 manually via brew", "aria2;sys_platform != 'darwin'", "openai", "gallery-dl", "google-generativeai", "googletrans-py"]
77

0 commit comments

Comments
 (0)