Skip to content

Commit d68892b

Browse files
committed
Update changelog & pyproject
1 parent 23fe53a commit d68892b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
# v1.9.0
2+
3+
- Allow multiple comma-separated model names
4+
- Add debug a111_params output
5+
16
# v1.8.0
27

38
- Allow workflow embed for all file formats.
49
- Added optional version field for Civitai Hash Fetcher.
510
- Added InputParameters node to simplify common KSampler parameters input.
611

7-
812
# v1.7.0
913

1014
- Add hash output for optional chaining of additional hashes.

nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def INPUT_TYPES(cls):
114114
"optional": {
115115
"steps": ("INT", {"default": 20, "min": 1, "max": 10000, "tooltip": "number of steps"}),
116116
"cfg": ("FLOAT", {"default": 7.0, "min": 0.0, "max": 100.0, "tooltip": "CFG value"}),
117-
"modelname": ("STRING", {"default": '', "multiline": False, "tooltip": "model name"}),
117+
"modelname": ("STRING", {"default": '', "multiline": False, "tooltip": "model name (can be multiple, separated by commas)"}),
118118
"sampler_name": ("STRING", {"default": '', "multiline": False, "tooltip": "sampler name (as string)"}),
119119
"scheduler": ("STRING", {"default": 'normal', "multiline": False, "tooltip": "scheduler name (as string)"}),
120120
"positive": ("STRING", {"default": 'unknown', "multiline": True, "tooltip": "positive prompt"}),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-image-saver"
33
description = "Save images with generation metadata compatible with Civitai. Works with png, jpeg and webp. Stores LoRAs, models and embeddings hashes for resource recognition."
4-
version = "1.8.0"
4+
version = "1.9.0"
55
license = { file = "LICENSE" }
66
dependencies = ["piexif"]
77

0 commit comments

Comments
 (0)