Skip to content

Commit 89edc36

Browse files
committed
Implement ComfyUI New Security System
1 parent 2e1c1d1 commit 89edc36

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

Roadmap.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ But seriously, after updating your code see if it works. If it didn't send the e
3333

3434
---
3535

36-
37-
Check Roadmap.md for some tasks and do them. don't do any marked as (low priority). If you think you can do the ones marked as New to-do items, needs more info/explaining/numbering those are good. There is some info on the project in README.md and info on the file structure and notes on each files functions in the ProjectStructure.md
38-
36+
!!!!
37+
Check Roadmap.md for some tasks and do them. If you think you can do the ones marked as New to-do items, needs more info/explaining/numbering those are good. There is some info on the project in README.md and info on the file structure and notes on each files functions in the ProjectStructure.md
38+
!!!!
39+
ProjectStructure.md has notes to assist AI in developing this project
40+
!!!!
3941

4042
### **ComfyUI Ultimate Sampler Grid – Development Roadmap**
4143

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "ultimate-auto-sampler-config-grid-testing-suite"
33
description = "Test Everything All In One Run!!! Testing & benchmarking tool for samplers, schedulers, CFG scales, multiple prompts, img2img denoise values, Models, Weights, LoRA and more! Features infinite-canvas dashboard image grids with virtual scrolling that can handle thousands of images! Smart caching, powerful sorting, filters, favoriting, reviewing, automatic resume on interrupt, and real-time visualization. Test entire checkpoint folders, stack multiple LoRAs, generate random seed variations, and export optimized configs, save sessions. Includes powerful UI for building AIO comparison runs, fullscreen mode, keyboard navigation, smart filtering by parameters, civitai model data info, and one-click regeneration workflow, and SO MUCH MORE. Perfect for sampler output optimization and parameter tuning."
4-
version = "1.12.0"
4+
version = "1.12.1"
55
license = {file = "LICENSE"}
66
classifiers = [
77
# # For OS-independent nodes (works on all operating systems)

web/conf_builder/conf-builder-config-management.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ async function showLoraMetadataModal(node, arrayIdx, loraName) {
11291129
modal.appendChild(title);
11301130

11311131
const status = document.createElement("div");
1132-
status.textContent = `🔄 Fetching metadata for: ${loraName.split('/').pop()}`;
1132+
status.textContent = `🔄 Fetching metadata for: ${loraName.split('/').pop()} (This could take a few seconds the fist time)`;
11331133
status.style.cssText = "margin-bottom: 15px; color: #aaa;";
11341134
modal.appendChild(status);
11351135

@@ -1299,7 +1299,7 @@ async function showModelMetadataModal(node, arrayIdx, modelName, modelType) {
12991299
modal.appendChild(title);
13001300

13011301
const status = document.createElement("div");
1302-
status.textContent = `🔄 Fetching metadata for: ${modelName.split('/').pop()}`;
1302+
status.textContent = `🔄 Fetching metadata for: ${modelName.split('/').pop()} (This could take a few seconds the fist time)`;
13031303
status.style.cssText = "margin-bottom: 15px; color: #aaa;";
13041304
modal.appendChild(status);
13051305

0 commit comments

Comments
 (0)