Browse Source

fix: trust_env=True for ssl issue

update DB
pull/72/head
dr.lt.data 1 year ago
parent
commit
623b514fe9
  1. 4
      __init__.py
  2. 6
      custom-node-list.json
  3. 8
      extension-node-map.json

4
__init__.py

@ -55,7 +55,7 @@ sys.path.append('../..')
from torchvision.datasets.utils import download_url from torchvision.datasets.utils import download_url
# ensure .js # ensure .js
print("### Loading: ComfyUI-Manager (V0.22.5)") print("### Loading: ComfyUI-Manager (V0.22.6)")
comfy_ui_required_revision = 1240 comfy_ui_required_revision = 1240
comfy_ui_revision = "Unknown" comfy_ui_revision = "Unknown"
@ -294,7 +294,7 @@ def git_pull(path):
async def get_data(uri): async def get_data(uri):
print(f"FETCH DATA from: {uri}") print(f"FETCH DATA from: {uri}")
if uri.startswith("http"): 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: async with session.get(uri) as resp:
json_text = await resp.text() json_text = await resp.text()
else: else:

6
custom-node-list.json

@ -334,7 +334,7 @@
"https://github.com/gamert/ComfyUI_tagger" "https://github.com/gamert/ComfyUI_tagger"
], ],
"install_type": "git-clone", "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", "author": "YinBailiang",
@ -658,7 +658,7 @@
"https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes" "https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes"
], ],
"install_type": "git-clone", "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", "author": "bmad4ever",
@ -1169,7 +1169,7 @@
"https://github.com/hustille/ComfyUI_Fooocus_KSampler" "https://github.com/hustille/ComfyUI_Fooocus_KSampler"
], ],
"install_type": "git-clone", "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", "author": "badjeff",

8
extension-node-map.json

@ -320,15 +320,20 @@
"DWPreprocessor", "DWPreprocessor",
"FakeScribblePreprocessor", "FakeScribblePreprocessor",
"HEDPreprocessor", "HEDPreprocessor",
"InpaintPreprocessor",
"LeReS-DepthMapPreprocessor", "LeReS-DepthMapPreprocessor",
"LineArtPreprocessor", "LineArtPreprocessor",
"M-LSDPreprocessor", "M-LSDPreprocessor",
"Manga2Anime_LineArt_Preprocessor", "Manga2Anime_LineArt_Preprocessor",
"MiDaS-DepthMapPreprocessor", "MiDaS-DepthMapPreprocessor",
"MiDaS-NormalMapPreprocessor", "MiDaS-NormalMapPreprocessor",
"OneFormer-ADE20K-SemSegPreprocessor",
"OneFormer-COCO-SemSegPreprocessor",
"OpenposePreprocessor", "OpenposePreprocessor",
"PiDiNetPreprocessor", "PiDiNetPreprocessor",
"ScribblePreprocessor", "ScribblePreprocessor",
"SemSegPreprocessor",
"UniFormer-SemSegPreprocessor",
"Zoe-DepthMapPreprocessor" "Zoe-DepthMapPreprocessor"
], ],
{ {
@ -338,6 +343,8 @@
"https://github.com/FizzleDorf/AIT": [ "https://github.com/FizzleDorf/AIT": [
[ [
"AITemplateControlNetLoader", "AITemplateControlNetLoader",
"AITemplateEmptyLatentImage",
"AITemplateLatentUpscale",
"AITemplateLoader", "AITemplateLoader",
"AITemplateVAEDecode", "AITemplateVAEDecode",
"AITemplateVAEEncode", "AITemplateVAEEncode",
@ -1653,6 +1660,7 @@
"MaskPainter", "MaskPainter",
"MaskToSEGS", "MaskToSEGS",
"MasksToMaskList", "MasksToMaskList",
"NoiseInjectionDetailerHookProvider",
"NoiseInjectionHookProvider", "NoiseInjectionHookProvider",
"ONNXDetectorProvider", "ONNXDetectorProvider",
"ONNXDetectorSEGS", "ONNXDetectorSEGS",

Loading…
Cancel
Save