Merge branch 'master' into assets-redo-part2

This commit is contained in:
Jedrzej Kosinski 2026-01-29 17:44:25 -08:00 committed by GitHub
commit a999cbcfbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -171,9 +171,10 @@ def get_outputs_summary(outputs: dict) -> tuple[int, Optional[dict]]:
continue continue
for item in items: for item in items:
count += 1
if not isinstance(item, dict): if not isinstance(item, dict):
continue continue
count += 1
if preview_output is None and is_previewable(media_type, item): if preview_output is None and is_previewable(media_type, item):
enriched = { enriched = {

View File

@ -1,3 +1,3 @@
# This file is automatically generated by the build process when version is # This file is automatically generated by the build process when version is
# updated in pyproject.toml. # updated in pyproject.toml.
__version__ = "0.11.0" __version__ = "0.11.1"

View File

@ -1,6 +1,6 @@
[project] [project]
name = "ComfyUI" name = "ComfyUI"
version = "0.11.0" version = "0.11.1"
readme = "README.md" readme = "README.md"
license = { file = "LICENSE" } license = { file = "LICENSE" }
requires-python = ">=3.10" requires-python = ">=3.10"