Make it more clear the recommended way to update the standalone build.

This commit is contained in:
comfyanonymous
2023-03-14 19:08:23 -04:00
parent 268a2dab71
commit 6d44cf74e3
11 changed files with 20 additions and 17 deletions

View File

@@ -811,7 +811,7 @@ class SaveImage:
if not os.path.exists(self.output_dir):
os.makedirs(self.output_dir)
paths = list()
for image in images:
i = 255. * image.cpu().numpy()
@@ -835,11 +835,11 @@ class PreviewImage(SaveImage):
@classmethod
def INPUT_TYPES(s):
return {"required":
return {"required":
{"images": ("IMAGE", ), },
"hidden": {"prompt": "PROMPT", "extra_pnginfo": "EXTRA_PNGINFO"},
}
class LoadImage:
input_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
@classmethod