Skip to content

Commit 1ab2b1a

Browse files
committed
modified: Reflection of changing --disable-manager to --enable-manager
1 parent ffaeb6d commit 1ab2b1a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

comfyui_manager/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def start():
1515
logging.info('[START] ComfyUI-Manager')
1616
from .common import cm_global # noqa: F401
1717

18-
if not args.disable_manager:
18+
if args.enable_manager:
1919
if args.enable_manager_legacy_ui:
2020
try:
2121
from .legacy import manager_server # noqa: F401
@@ -42,7 +42,7 @@ def should_be_disabled(fullpath:str) -> bool:
4242
1. Disables the legacy ComfyUI-Manager.
4343
2. The blocklist can be expanded later based on policies.
4444
"""
45-
if not args.disable_manager:
45+
if args.enable_manager:
4646
# In cases where installation is done via a zip archive, the directory name may not be comfyui-manager, and it may not contain a git repository.
4747
# It is assumed that any installed legacy ComfyUI-Manager will have at least 'comfyui-manager' in its directory name.
4848
dir_name = os.path.basename(fullpath).lower()

comfyui_manager/glob/manager_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
from ..common import context
4242

4343

44-
version_code = [4, 0, 1]
44+
version_code = [4, 0, 2]
4545
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
4646

4747

comfyui_manager/legacy/manager_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
from ..common import context
4242

4343

44-
version_code = [4, 0]
44+
version_code = [4, 0, 2]
4545
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
4646

4747

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "comfyui-manager"
77
license = { text = "GPL-3.0-only" }
8-
version = "4.0.1"
8+
version = "4.0.2"
99
requires-python = ">= 3.9"
1010
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
1111
readme = "README.md"
@@ -19,7 +19,7 @@ maintainers = [
1919
]
2020

2121
classifiers = [
22-
"Development Status :: 4 - Beta",
22+
"Development Status :: 5 - Production/Stable",
2323
"Intended Audience :: Developers",
2424
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2525
]

0 commit comments

Comments
 (0)