Compare commits

...

6 Commits

Author SHA1 Message Date
Chenlei Hu
764066f4da 1.11.8 (#2920) 2025-03-07 18:35:07 -05:00
Chenlei Hu
ec8e9cdb79 1.11.7 (#2911) 2025-03-07 11:29:12 -05:00
Chenlei Hu
c071aff1ab Update litegraph 0.8.99-patch.1 2025-03-07 11:28:08 -05:00
Robin Huang
84b039ac4d Update uv astral python mirror. (#2863) 2025-03-06 13:09:29 -05:00
Christian Byrne
8eec10dced Fix animated webp output preview (#2897) 2025-03-06 13:09:17 -05:00
huchenlei
95a5736da0 1.11.6 2025-02-28 20:16:44 -05:00
5 changed files with 21 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
from importlib.metadata import version, PackageNotFoundError
try:
__version__ = version("comfyui_frontend_package")
except PackageNotFoundError:
__version__ = "unknown"

12
package-lock.json generated
View File

@@ -1,17 +1,17 @@
{
"name": "@comfyorg/comfyui-frontend",
"version": "1.11.5",
"version": "1.11.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@comfyorg/comfyui-frontend",
"version": "1.11.5",
"version": "1.11.8",
"license": "GPL-3.0-only",
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.20",
"@comfyorg/litegraph": "^0.8.99",
"@comfyorg/litegraph": "^0.8.99-patch.1",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",
@@ -1944,9 +1944,9 @@
"license": "GPL-3.0-only"
},
"node_modules/@comfyorg/litegraph": {
"version": "0.8.99",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.8.99.tgz",
"integrity": "sha512-XpIEX9DB0hhcMer/nwP/Fz7QuV8dBaOKXitJosTilozcDuIOBCiprbrqBXKYkPLUQUZ99MBqO68kokv74w3U9w==",
"version": "0.8.99-patch.1",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.8.99-patch.1.tgz",
"integrity": "sha512-DIhgJbN94SfOeB+z8WLhpDn/S1gSY2lQ64AT8z6W9AIiW1KB9nfX+Zab0fwRDd2YQfsxNBoaXSZdCH9D8BjrUA==",
"license": "MIT"
},
"node_modules/@cspotcode/source-map-support": {

View File

@@ -1,7 +1,7 @@
{
"name": "@comfyorg/comfyui-frontend",
"private": true,
"version": "1.11.5",
"version": "1.11.8",
"type": "module",
"repository": "https://github.com/Comfy-Org/ComfyUI_frontend",
"homepage": "https://comfy.org",
@@ -83,7 +83,7 @@
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.20",
"@comfyorg/litegraph": "^0.8.99",
"@comfyorg/litegraph": "^0.8.99-patch.1",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",

View File

@@ -22,7 +22,7 @@ export const PYTHON_MIRROR: UVMirror = {
mirror:
'https://github.com/astral-sh/python-build-standalone/releases/download',
fallbackMirror:
'https://bgithub.xyz/astral-sh/python-build-standalone/releases/download',
'https://python-standalone.org/mirror/astral-sh/python-build-standalone',
validationPathSuffix:
'/20250115/cpython-3.10.16+20250115-aarch64-apple-darwin-debug-full.tar.zst.sha256'
}

View File

@@ -402,7 +402,12 @@ export const useLitegraphService = () => {
if (isNewOutput || isNewPreview) {
this.animatedImages = output?.animated?.find(Boolean)
if (this.animatedImages || isVideoNode(this)) {
const isAnimatedWebp =
this.animatedImages &&
output.images.some((img) => img.filename?.includes('webp'))
const isVideo =
(this.animatedImages && !isAnimatedWebp) || isVideoNode(this)
if (isVideo) {
useNodeVideo(this).showPreview()
} else {
useNodeImage(this).showPreview()