Skip to content

Commit

Permalink
fixed: reproduce mode is reflected to the saved metadata but it wans't
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed Jan 27, 2025
1 parent af1ef7e commit e70b4df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/impact/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configparser
import os

version_code = [8, 5]
version_code = [8, 5, 1]
version = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')

dependency_version = 24
Expand Down
2 changes: 1 addition & 1 deletion modules/impact/impact_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def onprompt_populate_wildcards(json_data):
key = str(node['id'])
if key in updated_widget_values:
node['widgets_values'][1] = updated_widget_values[key]
node['widgets_values'][2] = False
node['widgets_values'][2] = 'reproduce'


def onprompt_for_remote(json_data):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui-impact-pack"
description = "This node pack offers various detector nodes and detailer nodes that allow you to configure a workflow that automatically enhances facial details. And provide iterative upscaler."
version = "8.5"
version = "8.5.1"
license = { file = "LICENSE.txt" }
dependencies = ["segment-anything", "scikit-image", "piexif", "transformers", "opencv-python-headless", "GitPython", "scipy>=1.11.4"]

Expand Down

0 comments on commit e70b4df

Please sign in to comment.