Compare commits

...

4 Commits

Author SHA1 Message Date
Chenlei Hu
63d494f6aa 1.15.13 (#3387) 2025-04-10 14:09:19 -04:00
Chenlei Hu
e3a02885bb Disable reroute migration (2/2) (#3385) 2025-04-10 14:08:30 -04:00
Chenlei Hu
b1fd39ceba Disable native reroute migration (#3379)
Co-authored-by: github-actions <github-actions@github.com>
2025-04-10 14:08:26 -04:00
Comfy Org PR Bot
5807420e93 [chore] Update litegraph to 0.12.0 (#3335)
Co-authored-by: huchenlei <20929282+huchenlei@users.noreply.github.com>
2025-04-10 14:08:16 -04:00
6 changed files with 12 additions and 12 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 103 KiB

12
package-lock.json generated
View File

@@ -1,18 +1,18 @@
{
"name": "@comfyorg/comfyui-frontend",
"version": "1.15.12",
"version": "1.15.13",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@comfyorg/comfyui-frontend",
"version": "1.15.12",
"version": "1.15.13",
"license": "GPL-3.0-only",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.31",
"@comfyorg/litegraph": "^0.11.10",
"@comfyorg/litegraph": "^0.12.0",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",
@@ -478,9 +478,9 @@
"license": "GPL-3.0-only"
},
"node_modules/@comfyorg/litegraph": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.11.10.tgz",
"integrity": "sha512-3kMndikjaJSJ0NDQyueOKJKRI7GwThMIbdLSdPREnHiyCPpNusNev7bmzP4XvlzuLppmhH7dEwzBTWTQtQVRyA==",
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.12.0.tgz",
"integrity": "sha512-2LK1tNHIPAGmalloJxVtWXndG4vWNAEBX2RuQE7Fvtj2UuMFFpV/tWq+ofFJjj8sk2K/S5CfVsx+RFnREpV3RQ==",
"license": "MIT"
},
"node_modules/@cspotcode/source-map-support": {

View File

@@ -1,7 +1,7 @@
{
"name": "@comfyorg/comfyui-frontend",
"private": true,
"version": "1.15.12",
"version": "1.15.13",
"type": "module",
"repository": "https://github.com/Comfy-Org/ComfyUI_frontend",
"homepage": "https://comfy.org",
@@ -71,7 +71,7 @@
"@alloc/quick-lru": "^5.2.0",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.31",
"@comfyorg/litegraph": "^0.11.10",
"@comfyorg/litegraph": "^0.12.0",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",

View File

@@ -44,7 +44,7 @@ app.registerExtension({
}
if (!(type in this.slot_types_default_out)) {
this.slot_types_default_out[type] = []
this.slot_types_default_out[type] = ['Reroute']
}
if (this.slot_types_default_out[type].includes(nodeId)) continue
this.slot_types_default_out[type].push(nodeId)
@@ -65,7 +65,7 @@ app.registerExtension({
for (const el of outputs) {
const type = el as string
if (!(type in this.slot_types_default_in)) {
this.slot_types_default_in[type] = []
this.slot_types_default_in[type] = ['Reroute']
}
if (this.slot_types_default_in[type].includes(nodeId)) continue

View File

@@ -962,7 +962,7 @@ export class ComfyApp {
{
showMissingNodesDialog = true,
showMissingModelsDialog = true,
checkForRerouteMigration = true
checkForRerouteMigration = false
} = {}
) {
if (clean !== false) {

View File

@@ -164,7 +164,7 @@ export const useWorkflowService = () => {
{
showMissingModelsDialog: loadFromRemote,
showMissingNodesDialog: loadFromRemote,
checkForRerouteMigration: loadFromRemote
checkForRerouteMigration: false
}
)
}