comfyui-mcp 0.52.104 → 0.52.106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/orchestrator/panel-tools.js +8 -1
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/dist/services/comfy-view-ref.js +6 -1
- package/dist/services/comfy-view-ref.js.map +1 -1
- package/dist/services/node-management.js +239 -2
- package/dist/services/node-management.js.map +1 -1
- package/dist/services/ui-bridge.js +1 -1
- package/dist/services/ui-bridge.js.map +1 -1
- package/package.json +1 -1
|
@@ -17941,7 +17941,10 @@ CHECKED FOR YOU: the graph read this message prescribes was just run, and it ` +
|
|
|
17941
17941
|
normalized.push(item.value);
|
|
17942
17942
|
}
|
|
17943
17943
|
const items = normalized;
|
|
17944
|
-
|
|
17944
|
+
// APNG is an image container just like GIF/WebP. Keep the original
|
|
17945
|
+
// bytes in the data URL: the downstream client decides whether it can
|
|
17946
|
+
// advance the animation, while this producer must not flatten it.
|
|
17947
|
+
const IMAGE_EXTS = new Set([".png", ".jpg", ".jpeg", ".gif", ".apng", ".webp"]);
|
|
17945
17948
|
// #811 — this used to be just {.mp4, .webm}, narrower than what this
|
|
17946
17949
|
// codebase ALREADY treats as video elsewhere: get_image's
|
|
17947
17950
|
// action:"list_outputs" documents ".mp4/.webm/.mov/.mkv/.m4v/.avi", and
|
|
@@ -18306,6 +18309,10 @@ CHECKED FOR YOU: the graph read this message prescribes was just run, and it ` +
|
|
|
18306
18309
|
// "viewRef" for a ComfyUI reference whose media kind only the
|
|
18307
18310
|
// client's own classifier decides.
|
|
18308
18311
|
kind: typeof r.kind === "string" ? r.kind : "(unknown)",
|
|
18312
|
+
// The animated-media diagnostic may only claim bytes were
|
|
18313
|
+
// dispatched when this exact item carried the data URL. A
|
|
18314
|
+
// filename-only viewRef is not proof that this process sent bytes.
|
|
18315
|
+
inline: typeof r.dataUrl === "string",
|
|
18309
18316
|
})));
|
|
18310
18317
|
// Why an item the caller passed as a PATH came back described as a
|
|
18311
18318
|
// reference — the panel cannot say, because it never saw the path or the
|