From bc075b1a4f3a942753c9fbad8b5537c2bebda4a6 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Sun, 18 Aug 2024 19:32:37 +0900 Subject: [PATCH] version marker --- __init__.py | 2 +- inspire/image_util.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index 54c3f46..9f8a0a1 100644 --- a/__init__.py +++ b/__init__.py @@ -7,7 +7,7 @@ import importlib -version_code = [0, 85, 2] +version_code = [0, 86] version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '') print(f"### Loading: ComfyUI-Inspire-Pack ({version_str})") diff --git a/inspire/image_util.py b/inspire/image_util.py index 77f7bd3..ab99f45 100644 --- a/inspire/image_util.py +++ b/inspire/image_util.py @@ -127,7 +127,7 @@ def INPUT_TYPES(s): } RETURN_TYPES = ("IMAGE", "MASK", "STRING") - RETURN_NAMES = ("IMAGE","MASK", "FILE PATH") + RETURN_NAMES = ("IMAGE", "MASK", "FILE PATH") OUTPUT_IS_LIST = (True, True, True) FUNCTION = "load_images" diff --git a/pyproject.toml b/pyproject.toml index 8b2ac38..30edad3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-inspire-pack" description = "This extension provides various nodes to support Lora Block Weight and the Impact Pack. Provides many easily applicable regional features and applications for Variation Seed." -version = "0.85.2" +version = "0.86" license = { file = "LICENSE" } dependencies = ["matplotlib", "cachetools"]