mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-09 14:14:54 +08:00
update DB
This commit is contained in:
parent
ff5db97c4a
commit
019897eae2
@ -194,6 +194,11 @@
|
|||||||
"id":"https://github.com/shiimizu/ComfyUI-TiledDiffusion",
|
"id":"https://github.com/shiimizu/ComfyUI-TiledDiffusion",
|
||||||
"tags":"multidiffusion",
|
"tags":"multidiffusion",
|
||||||
"description": "This extension provides custom nodes for [a/Mixture of Diffusers](https://github.com/albarji/mixture-of-diffusers) and [a/MultiDiffusion](https://github.com/omerbt/MultiDiffusion)"
|
"description": "This extension provides custom nodes for [a/Mixture of Diffusers](https://github.com/albarji/mixture-of-diffusers) and [a/MultiDiffusion](https://github.com/omerbt/MultiDiffusion)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id":"https://github.com/abyz22/image_control",
|
||||||
|
"tags":"BMAB",
|
||||||
|
"description": "This extension provides some alternative functionalities of the [a/sd-webui-bmab](https://github.com/portu-sim/sd-webui-bmab) extension."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -4234,6 +4234,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A bunch of nodes that can be useful to manipulate primitive types (numbers, text, ...) Also some helpers to generate text and timestamps."
|
"description": "A bunch of nodes that can be useful to manipulate primitive types (numbers, text, ...) Also some helpers to generate text and timestamps."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "abyz22",
|
||||||
|
"title": "image_control",
|
||||||
|
"reference": "https://github.com/abyz22/image_control",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/abyz22/image_control"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:abyz22_Padding Image, abyz22_ImpactWildcardEncode, abyz22_setimageinfo, abyz22_SaveImage, abyz22_ImpactWildcardEncode_GetPrompt, abyz22_SetQueue, abyz22_drawmask, abyz22_FirstNonNull, abyz22_blendimages, abyz22_blend_onecolor"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"author": "Ser-Hilary",
|
"author": "Ser-Hilary",
|
||||||
|
|||||||
@ -2714,6 +2714,26 @@
|
|||||||
"title_aux": "ComfyUI-AudioScheduler"
|
"title_aux": "ComfyUI-AudioScheduler"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/abyz22/image_control": [
|
||||||
|
[
|
||||||
|
"abyz22_FirstNonNull",
|
||||||
|
"abyz22_FromBasicPipe_v2",
|
||||||
|
"abyz22_ImpactWildcardEncode",
|
||||||
|
"abyz22_ImpactWildcardEncode_GetPrompt",
|
||||||
|
"abyz22_Ksampler",
|
||||||
|
"abyz22_Padding Image",
|
||||||
|
"abyz22_SaveImage",
|
||||||
|
"abyz22_SetQueue",
|
||||||
|
"abyz22_ToBasicPipe",
|
||||||
|
"abyz22_blend_onecolor",
|
||||||
|
"abyz22_blendimages",
|
||||||
|
"abyz22_drawmask",
|
||||||
|
"abyz22_setimageinfo"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "image_control"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/adieyal/comfyui-dynamicprompts": [
|
"https://github.com/adieyal/comfyui-dynamicprompts": [
|
||||||
[
|
[
|
||||||
"DPCombinatorialGenerator",
|
"DPCombinatorialGenerator",
|
||||||
|
|||||||
@ -16,6 +16,7 @@ import { AlternativesInstaller } from "./a1111-alter-downloader.js";
|
|||||||
import { SnapshotManager } from "./snapshot.js";
|
import { SnapshotManager } from "./snapshot.js";
|
||||||
import { ModelInstaller } from "./model-downloader.js";
|
import { ModelInstaller } from "./model-downloader.js";
|
||||||
import { manager_instance, setManagerInstance, install_via_git_url, install_pip, rebootAPI, free_models } from "./common.js";
|
import { manager_instance, setManagerInstance, install_via_git_url, install_pip, rebootAPI, free_models } from "./common.js";
|
||||||
|
import { save_as_component } from "./components-manager.js";
|
||||||
|
|
||||||
var docStyle = document.createElement('style');
|
var docStyle = document.createElement('style');
|
||||||
docStyle.innerHTML = `
|
docStyle.innerHTML = `
|
||||||
@ -1184,6 +1185,14 @@ app.registerExtension({
|
|||||||
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
||||||
node.prototype.getExtraMenuOptions = function (_, options) {
|
node.prototype.getExtraMenuOptions = function (_, options) {
|
||||||
origGetExtraMenuOptions?.apply?.(this, arguments);
|
origGetExtraMenuOptions?.apply?.(this, arguments);
|
||||||
|
|
||||||
|
if (node.comfyClass.startsWith('workflow/')) {
|
||||||
|
options.push({
|
||||||
|
content: "Save As Component",
|
||||||
|
callback: (obj) => { save_as_component(node, app); }
|
||||||
|
}, null);
|
||||||
|
}
|
||||||
|
|
||||||
if (isOutputNode(node)) {
|
if (isOutputNode(node)) {
|
||||||
const { potential_outputs } = getPotentialOutputsAndOutputNodes([this]);
|
const { potential_outputs } = getPotentialOutputsAndOutputNodes([this]);
|
||||||
const hasOutput = potential_outputs.length > 0;
|
const hasOutput = potential_outputs.length > 0;
|
||||||
|
|||||||
@ -10,6 +10,16 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "abyz22",
|
||||||
|
"title": "image_control",
|
||||||
|
"reference": "https://github.com/abyz22/image_control",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/abyz22/image_control"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:abyz22_Padding Image, abyz22_ImpactWildcardEncode, abyz22_setimageinfo, abyz22_SaveImage, abyz22_ImpactWildcardEncode_GetPrompt, abyz22_SetQueue, abyz22_drawmask, abyz22_FirstNonNull, abyz22_blendimages, abyz22_blend_onecolor"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "foxtrot-roger",
|
"author": "foxtrot-roger",
|
||||||
"title": "RF Nodes",
|
"title": "RF Nodes",
|
||||||
|
|||||||
@ -2714,6 +2714,26 @@
|
|||||||
"title_aux": "ComfyUI-AudioScheduler"
|
"title_aux": "ComfyUI-AudioScheduler"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/abyz22/image_control": [
|
||||||
|
[
|
||||||
|
"abyz22_FirstNonNull",
|
||||||
|
"abyz22_FromBasicPipe_v2",
|
||||||
|
"abyz22_ImpactWildcardEncode",
|
||||||
|
"abyz22_ImpactWildcardEncode_GetPrompt",
|
||||||
|
"abyz22_Ksampler",
|
||||||
|
"abyz22_Padding Image",
|
||||||
|
"abyz22_SaveImage",
|
||||||
|
"abyz22_SetQueue",
|
||||||
|
"abyz22_ToBasicPipe",
|
||||||
|
"abyz22_blend_onecolor",
|
||||||
|
"abyz22_blendimages",
|
||||||
|
"abyz22_drawmask",
|
||||||
|
"abyz22_setimageinfo"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "image_control"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/adieyal/comfyui-dynamicprompts": [
|
"https://github.com/adieyal/comfyui-dynamicprompts": [
|
||||||
[
|
[
|
||||||
"DPCombinatorialGenerator",
|
"DPCombinatorialGenerator",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user