mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-17 02:12:58 +08:00
fix: trust_env=True for ssl issue
update DB
This commit is contained in:
parent
6cc7bae9eb
commit
623b514fe9
@ -55,7 +55,7 @@ sys.path.append('../..')
|
||||
from torchvision.datasets.utils import download_url
|
||||
|
||||
# ensure .js
|
||||
print("### Loading: ComfyUI-Manager (V0.22.5)")
|
||||
print("### Loading: ComfyUI-Manager (V0.22.6)")
|
||||
|
||||
comfy_ui_required_revision = 1240
|
||||
comfy_ui_revision = "Unknown"
|
||||
@ -294,7 +294,7 @@ def git_pull(path):
|
||||
async def get_data(uri):
|
||||
print(f"FETCH DATA from: {uri}")
|
||||
if uri.startswith("http"):
|
||||
async with aiohttp.ClientSession() as session:
|
||||
async with aiohttp.ClientSession(trust_env=True) as session:
|
||||
async with session.get(uri) as resp:
|
||||
json_text = await resp.text()
|
||||
else:
|
||||
|
||||
@ -334,7 +334,7 @@
|
||||
"https://github.com/gamert/ComfyUI_tagger"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes: CLIPTextEncodeTaggerDD, ImageTaggerDD"
|
||||
"description": "Nodes: CLIPTextEncodeTaggerDD, ImageTaggerDD. <p style='background-color: black; color: red;'>WARNING: Installing the current version is causing an issue where ComfyUI fails to start.</p>"
|
||||
},
|
||||
{
|
||||
"author": "YinBailiang",
|
||||
@ -658,7 +658,7 @@
|
||||
"https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These nodes were made for use in the Comfyroll Template Workflows."
|
||||
"description": "Custom nodes for SDXL and SD1.5 including Multi-ControlNet, LoRA, Aspect Ratio, Process Switches, and many more nodes."
|
||||
},
|
||||
{
|
||||
"author": "bmad4ever",
|
||||
@ -1169,7 +1169,7 @@
|
||||
"https://github.com/hustille/ComfyUI_Fooocus_KSampler"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes: KSamplerWithRefiner. The KSampler from Fooocus as a ComfyUI node <p style='background-color: black; color: red;'>NOTE: This patches basic ComfyUI behaviour - don't use together with other samplers. Or perhaps do? Other samplers might profit from those changes ... ymmv.</p>"
|
||||
"description": "Nodes: KSampler With Refiner (Fooocus). The KSampler from <a href='https://github.com/lllyasviel/Fooocus'>Fooocus</a> as a ComfyUI node <p style='background-color: black; color: red;'>NOTE: This patches basic ComfyUI behaviour - don't use together with other samplers. Or perhaps do? Other samplers might profit from those changes ... ymmv.</p>"
|
||||
},
|
||||
{
|
||||
"author": "badjeff",
|
||||
|
||||
@ -320,15 +320,20 @@
|
||||
"DWPreprocessor",
|
||||
"FakeScribblePreprocessor",
|
||||
"HEDPreprocessor",
|
||||
"InpaintPreprocessor",
|
||||
"LeReS-DepthMapPreprocessor",
|
||||
"LineArtPreprocessor",
|
||||
"M-LSDPreprocessor",
|
||||
"Manga2Anime_LineArt_Preprocessor",
|
||||
"MiDaS-DepthMapPreprocessor",
|
||||
"MiDaS-NormalMapPreprocessor",
|
||||
"OneFormer-ADE20K-SemSegPreprocessor",
|
||||
"OneFormer-COCO-SemSegPreprocessor",
|
||||
"OpenposePreprocessor",
|
||||
"PiDiNetPreprocessor",
|
||||
"ScribblePreprocessor",
|
||||
"SemSegPreprocessor",
|
||||
"UniFormer-SemSegPreprocessor",
|
||||
"Zoe-DepthMapPreprocessor"
|
||||
],
|
||||
{
|
||||
@ -338,6 +343,8 @@
|
||||
"https://github.com/FizzleDorf/AIT": [
|
||||
[
|
||||
"AITemplateControlNetLoader",
|
||||
"AITemplateEmptyLatentImage",
|
||||
"AITemplateLatentUpscale",
|
||||
"AITemplateLoader",
|
||||
"AITemplateVAEDecode",
|
||||
"AITemplateVAEEncode",
|
||||
@ -1653,6 +1660,7 @@
|
||||
"MaskPainter",
|
||||
"MaskToSEGS",
|
||||
"MasksToMaskList",
|
||||
"NoiseInjectionDetailerHookProvider",
|
||||
"NoiseInjectionHookProvider",
|
||||
"ONNXDetectorProvider",
|
||||
"ONNXDetectorSEGS",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user