Skip to content

Commit aba029a

Browse files
committed
fix GGUF lora
1 parent 6d50a00 commit aba029a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
NODE_DISPLAY_NAME_MAPPINGS: Dict[str, str] = {}
3939
APP_CONFIGS: List[AppConfig] = []
4040
APP_NAME: str = "Flow"
41-
APP_VERSION: str = "0.4.4"
41+
APP_VERSION: str = "0.4.5"
4242
PURPLE = "\033[38;5;129m"
4343
RESET = "\033[0m"
4444
FLOWMSG = f"{PURPLE}Flow{RESET}"

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-disty-flow"
33
description = "Flow is a custom node designed to provide a more user-friendly interface for ComfyUI by acting as an alternative user interface for running workflows. It is not a replacement for workflow creation.\nFlow is currently in the early stages of development, so expect bugs and ongoing feature enhancements. With your support and feedback, Flow will settle into a steady stream."
4-
version = "0.4.4"
4+
version = "0.4.5"
55
license = {file = "LICENSE"}
66

77
[project.urls]

web/core/js/common/components/WorkflowNodeAdder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class WorkflowNodeAdder {
9292
}
9393

9494
_isModelLoader(classType) {
95-
const modelLoaderTypes = ["UNETLoader","CheckpointLoaderSimple","DownloadAndLoadMochiModel,UnetLoaderGGUF"];
95+
const modelLoaderTypes = ["UNETLoader","CheckpointLoaderSimple","DownloadAndLoadMochiModel","UnetLoaderGGUF"];
9696
return modelLoaderTypes.includes(classType);
9797
}
9898

0 commit comments

Comments
 (0)