Alex Morgan
Alex Morgan
Currently Start/Stop button is changing even if image generation started from another copy of sdfx. With this issue work queue is not working correctly, and users will often interrupt each...
In some cases we need to set values or bypass/unbypass more than one nodes. E.g. mute both model loading and ksampler.
I want to create app that can generate more than one images, and I need to show all of them. However, current preview and BoxPreview components doesn't support target preview...
BoxSeed needs to update, if seed is random/increment/decrement. Also, real max seed number for KSampler is bigger, than MAX_SAFE_INTEGER, which is current limit for SDFX AI. And why we can...
Currently max seed number for UI widget is 977173709552000. But real max seed number, according to check in KSampler, is 18446744073709551615. Btw, current max seed is even not a pow...
There is too much cloned defaults in widgetDefaults.ts, but it always will be not enough for endless custom nodes for ComfyUI. And if we change widgetNames to another (not from...
Stuck in "Rebooting" in SDFX AI app mode. In web mode user can press F5 and it will be fine, however, in app mode this hangs entire app. Message "Please...
1. Users can't delete selected images from gallery. Only wipe it completely. 2. If user choose to delete image from folder on server instead, gallery still trying to display those...
Current message is "Please drag'n drop a SDFX app, an image or a Comfy Workflow." But amateur users got stuck, they don't understand, what is an app or an workflow....
PromptTimeline.vue is using crypto.randomUUID() for uuid generation. Using crypto.randomUUID() work on https-sites, but cannot be used on http-sites (except localhost), because crypto is undefined there. It's better to use uuidv4()...