2 Commits

Author SHA1 Message Date
Hayden
f3de2006ef Prepare release 2.8.3 2025-09-05 16:53:05 +08:00
Hayden
0295dd6288 fix: Validate existence of entry path after improvements previews (#205) 2025-09-05 16:51:54 +08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -157,6 +157,8 @@ class ModelManager:
def get_all_files_entry(directory: str):
entries: list[os.DirEntry[str]] = []
if not os.path.exists(directory):
return []
with os.scandir(directory) as it:
for entry in it:
if not include_hidden_files and entry.name.startswith("."):

View File

@@ -1,7 +1,7 @@
[project]
name = "comfyui-model-manager"
description = "Manage models: browsing, download and delete."
version = "2.8.2"
version = "2.8.3"
license = { file = "LICENSE" }
dependencies = ["markdownify"]