diff --git a/glob/manager_core.py b/glob/manager_core.py index d9db7782..417246f9 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 46, 2] +version = [2, 46, 3] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') diff --git a/glob/manager_server.py b/glob/manager_server.py index f157fca7..0137a37a 100644 --- a/glob/manager_server.py +++ b/glob/manager_server.py @@ -579,12 +579,6 @@ async def fetch_externalmodel_list(request): return web.json_response(json_obj, content_type='application/json') -@PromptServer.instance.routes.get("/snapshot/get_current") -async def get_snapshot_list(request): - json_obj = core.get_current_snapshot() - return web.json_response(json_obj, content_type='application/json') - - @PromptServer.instance.routes.get("/snapshot/getlist") async def get_snapshot_list(request): snapshots_directory = os.path.join(core.comfyui_manager_path, 'snapshots') diff --git a/pyproject.toml b/pyproject.toml index fbb0be02..08d0f736 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "2.46.2" +version = "2.46.3" license = "LICENSE" dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]