aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
AgeCommit message (Collapse)AuthorLines
2022-09-23Show interrupt button without progress barinnovaciones-1/+1
2022-09-23sort JavaScript includes to assure script sequenceDepFA-1/+1
Who knows what filesystem they're on
2022-09-22settings categories split to columns, remade categoriesAUTOMATIC-23/+32
2022-09-22Add section splitting to settings uiDepFA-7/+16
2022-09-22move Notification.requestPermission() entirely to javascript to possibly fix ↵AUTOMATIC-2/+2
problem with secure context people are having on non-localhost
2022-09-22remove labels from output galleryAUTOMATIC-3/+3
2022-09-22A big rework, just what you were secretly hoping for!AUTOMATIC-75/+57
SD upscale moved to scripts Batch processing script removed Batch processing added to main img2img and now works with scripts img2img page UI reworked to use tabs
2022-09-22New position and interrupt integrationinnovaciones-21/+25
2022-09-22Use generate button as progress barinnovaciones-3/+4
2022-09-21Add LDSR and "GoLatent?" Upscaling (#763)d8ahazard-0/+1
* Add LDSR Upscaling
2022-09-21prevent seed extras from having effect when extras checkbox is not checkedAUTOMATIC-5/+5
2022-09-21fix image replacement via clipboard paste or drag and drop on PNG Info tabConnum-1/+1
2022-09-20added --use-textbox-seed option to make long seeds possible from web uiAUTOMATIC-1/+1
2022-09-20Enable neural network upscalers for highres. fixAUTOMATIC-1/+1
2022-09-20Send a browser notification when the images are readyDave Sescleifer-0/+8
2022-09-19Automatically show PNGinfo when uploading imagetrufty-0/+1
2022-09-19fix the issue with incorrect js options on page loadAUTOMATIC-1/+1
add a setting for lightbox max size images use setting for lightbox max size images late to let user change it and see results
2022-09-19added highres fix featureAUTOMATIC-0/+15
2022-09-19Merge remote-tracking branch 'origin/master'AUTOMATIC-4/+1
2022-09-19made 'reuse seed' button give you the seed/subseed of the currently selected ↵AUTOMATIC-40/+26
picture rather than the first
2022-09-19Move memmon tooltip to hints.jsEyeDeck-4/+1
Move memmon tooltip to hints.js so it's with the other tooltips, and doesn't have to be re-sent from the server every time. Also, allowed tooltips to be applied by matching a class name if all else fails.
2022-09-18add read access to settings for jsavascriptAUTOMATIC-2/+11
add an option to disable lightbox modal
2022-09-18fix tooltip not appearing for the shuffle buttonAUTOMATIC-2/+2
2022-09-18Merge pull request #585 from JohanAR/ui_seed_changesAUTOMATIC1111-36/+102
Polish seed UI options
2022-09-18prevent live previews from showing previous pictureAUTOMATIC-0/+2
2022-09-18Add buttons for random and reuse seed.Johan Aires Rastén-36/+102
Random button sets seed to -1, reuse copies the seed from the last generated image.
2022-09-18Merge pull request #651 from EyeDeck/masterAUTOMATIC1111-12/+17
Add some error handling for VRAM monitor
2022-09-18...and make sure it can't get stuck onEyeDeck-2/+3
in case someone sets opts.memmon_poll_rate to 0 during generation
2022-09-18Add some error handling for VRAM monitorEyeDeck-12/+16
2022-09-18altered progressbar to not rely on first progress request coming after the ↵AUTOMATIC-22/+35
job has started; may help with broken progressbar some people say they have
2022-09-18script.js split workAUTOMATIC-2/+7
2022-09-17typoAUTOMATIC-1/+1
2022-09-17added user.css supportAUTOMATIC-0/+5
2022-09-17moved progressbar to top by requestAUTOMATIC-3/+4
2022-09-17add support for switching model checkpoints at runtimeAUTOMATIC-0/+5
2022-09-17hide VRAM text if polling is disabledAUTOMATIC-3/+4
2022-09-17Add VRAM monitoringEyeDeck-1/+13
2022-09-16remove the warning at startup related to previous PR with batch processingAUTOMATIC-1/+1
2022-09-16Add batch processing to Extras tabArrowM-4/+9
2022-09-14added a second style fieldAUTOMATIC-24/+74
added the ability to use {prompt} in styles added a button to apply style to textbox rearranged top row for UI
2022-09-14loopback moved to scripts, added support for multiple batches, changed to ↵AUTOMATIC-9/+2
honor save grids and how grids in web setting
2022-09-14Update ui.pyjtkelm2-1/+1
2022-09-14Update ui.pyjtkelm2-1/+1
2022-09-14Added selected image savingjtkelm2-2/+10
2022-09-12Swap width and height sliders in the UInnuudev-3/+3
2022-09-12add negative prompt to log when clicking save #249AUTOMATIC-2/+2
2022-09-12 Instance of CUDA out of memory on a low-res batch, even with ↵AUTOMATIC-1/+1
--opt-split-attention-v1 (found cause) #255
2022-09-12Merge branch 'master' into masterAUTOMATIC1111-2/+2
2022-09-12memory optimization for CLIP interrogatorAUTOMATIC-2/+2
changed default cfg_scale to a higher value
2022-09-11Add --hide-ui-dir-config command line flagEyeDeck-6/+11
Adds `--hide-ui-dir-config` flag to disable editing directory configs from the web UI. This can be set to prevent users from setting the directory to somewhere they shouldn't, for public (or semi-public) interfaces. Directories are still read from config.json, so the server admin can still set them in the web UI and then relaunch with the hide flag, or edit the config manually. Also: - fix OptionInfo `component_args` keyword argument not being read if `component` isn't also set - ensure that hidden settings aren't still read from the web UI (otherwise they could still be changed by tampering with the interface)