mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-22 20:44:29 +08:00
robust patch for alternatives dialog
update DB
This commit is contained in:
parent
ea0861db68
commit
9b535f163c
@ -6,14 +6,9 @@
|
|||||||
"description": "This extension provides preprocessor nodes for using controlnet."
|
"description": "This extension provides preprocessor nodes for using controlnet."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/sampler_tonemap.py",
|
"id":"https://github.com/comfyanonymous/ComfyUI_experiments",
|
||||||
"tags":"Dynamic Thresholding, DT, CFG",
|
"tags":"Dynamic Thresholding, DT, CFG, controlnet, reference only",
|
||||||
"description": "Increasing the CFG prevents the degradation of color accuracy."
|
"description": "This experimental nodes contains a 'Reference Only' node and a 'ModelSamplerTonemapNoiseTest' node corresponding to the 'Dynamic Threshold'."
|
||||||
},
|
|
||||||
{
|
|
||||||
"id":"https://github.com/comfyanonymous/ComfyUI_experiments/raw/master/reference_only.py",
|
|
||||||
"tags":"controlnet, reference only",
|
|
||||||
"description": "This node provides functionality corresponding to Reference only in Controlnet."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"https://github.com/ltdrdata/ComfyUI-Impact-Pack",
|
"id":"https://github.com/ltdrdata/ComfyUI-Impact-Pack",
|
||||||
|
|||||||
@ -2274,14 +2274,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/sipherxyz/comfyui-art-venture": [
|
"https://github.com/sipherxyz/comfyui-art-venture": [
|
||||||
[
|
[
|
||||||
"AV_CheckpointLoader",
|
|
||||||
"AV_CheckpointModelsToParametersPipe",
|
"AV_CheckpointModelsToParametersPipe",
|
||||||
"AV_ControlNetLoader",
|
"AV_ControlNetLoader",
|
||||||
"AV_ControlNetSelector",
|
"AV_LoraLoader",
|
||||||
"AV_ParametersPipeToCheckpointModels",
|
"AV_ParametersPipeToCheckpointModels",
|
||||||
"AV_ParametersPipeToPrompts",
|
"AV_ParametersPipeToPrompts",
|
||||||
"AV_PromptsToParametersPipe",
|
"AV_PromptsToParametersPipe",
|
||||||
"AV_UploadImage",
|
"AV_UploadImage",
|
||||||
|
"AV_VAELoader",
|
||||||
"BLIPCaption",
|
"BLIPCaption",
|
||||||
"ColorBlend",
|
"ColorBlend",
|
||||||
"ColorCorrect",
|
"ColorCorrect",
|
||||||
|
|||||||
@ -895,6 +895,10 @@ class AlternativesInstaller extends ComfyDialog {
|
|||||||
for(let i in this.grid_rows) {
|
for(let i in this.grid_rows) {
|
||||||
let data1 = this.grid_rows[i].data;
|
let data1 = this.grid_rows[i].data;
|
||||||
let data2 = data1.custom_node;
|
let data2 = data1.custom_node;
|
||||||
|
|
||||||
|
if(!data2)
|
||||||
|
continue;
|
||||||
|
|
||||||
let content = data1.tags.toLowerCase() + data1.description.toLowerCase() + data2.author.toLowerCase() + data2.description.toLowerCase() + data2.title.toLowerCase();
|
let content = data1.tags.toLowerCase() + data1.description.toLowerCase() + data2.author.toLowerCase() + data2.description.toLowerCase() + data2.title.toLowerCase();
|
||||||
|
|
||||||
if(this.filter && this.filter != '*') {
|
if(this.filter && this.filter != '*') {
|
||||||
|
|||||||
@ -2274,14 +2274,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/sipherxyz/comfyui-art-venture": [
|
"https://github.com/sipherxyz/comfyui-art-venture": [
|
||||||
[
|
[
|
||||||
"AV_CheckpointLoader",
|
|
||||||
"AV_CheckpointModelsToParametersPipe",
|
"AV_CheckpointModelsToParametersPipe",
|
||||||
"AV_ControlNetLoader",
|
"AV_ControlNetLoader",
|
||||||
"AV_ControlNetSelector",
|
"AV_LoraLoader",
|
||||||
"AV_ParametersPipeToCheckpointModels",
|
"AV_ParametersPipeToCheckpointModels",
|
||||||
"AV_ParametersPipeToPrompts",
|
"AV_ParametersPipeToPrompts",
|
||||||
"AV_PromptsToParametersPipe",
|
"AV_PromptsToParametersPipe",
|
||||||
"AV_UploadImage",
|
"AV_UploadImage",
|
||||||
|
"AV_VAELoader",
|
||||||
"BLIPCaption",
|
"BLIPCaption",
|
||||||
"ColorBlend",
|
"ColorBlend",
|
||||||
"ColorCorrect",
|
"ColorCorrect",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user