aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
AgeCommit message (Collapse)AuthorLines
2022-11-28fix an error that happens when you type into prompt while switching model, ↵AUTOMATIC-64/+3
put queue stuff into separate file
2022-11-27cherrypick from #4971AUTOMATIC-0/+1
2022-11-27add safetensors support for model merging #4869AUTOMATIC-1/+6
2022-11-27Merge pull request #4913 from dtlnor/deprecated-deepdanbooru-patchAUTOMATIC1111-1/+1
Remove cmd args requirement for deepdanbooru
2022-11-27Merge remote-tracking branch 'flamelaw/master'AUTOMATIC-1/+15
2022-11-27serve images from where they are saved instead of a temporary directoryAUTOMATIC-16/+0
add an option to choose a different temporary directory in the UI add an option to cleanup the selected temporary directory at startup
2022-11-26restore hypernetworks to seemingly working stateAUTOMATIC-1/+1
2022-11-26add 1024 module for hypernets for the new open clipAUTOMATIC-1/+1
2022-11-26Add support Stable Diffusion 2.0AUTOMATIC-8/+5
2022-11-21remove cmd args requirement for deepdanboorudtlnor-9/+6
2022-11-20moved deepdanbooru to pure pytorch implementationAUTOMATIC-5/+2
2022-11-20Gradient accumulation, autocast fix, new latent sampling method, etcflamelaw-1/+15
2022-11-19Add API for scripts to add elements anywhere in UI.AUTOMATIC-2/+10
2022-11-19make it possible to change models etc by editing options using APIAUTOMATIC-18/+4
2022-11-19Merge pull request #4759 from dtlnor/kill-gradio-progress-barAUTOMATIC1111-0/+3
Hide Gradio progress again
2022-11-19Merge pull request #4812 from space-nuko/feature/interrupt-preprocessingAUTOMATIC1111-1/+9
Add interrupt button to preprocessing
2022-11-19change StableDiffusionProcessing to internally use sampler name instead of ↵AUTOMATIC-1/+1
sampler index
2022-11-17Add interrupt button to preprocessingspace-nuko-1/+9
2022-11-16add css overridedtlnor-0/+3
2022-11-10added event listener for the image gallery modal; moved js to separate fileLiam-0/+2
2022-11-09updating the displayed generation info when user clicks images in the ↵Liam-0/+20
gallery. feature request 4415
2022-11-08add callback for creating a tab in train UIAUTOMATIC-0/+4
2022-11-08fix javascript duplication bug after pressing the restart UI buttonAUTOMATIC-3/+4
2022-11-06load all settings in one call instead of one by one when the page loadsAUTOMATIC-6/+16
2022-11-06add tags to extensions, and ability to filter out tagsAUTOMATIC-11/+14
list changed Settings keys in UI do not print VRAM/etc stats everywhere but in calls that use GPU
2022-11-06add ability to create extensions that add localizationsAUTOMATIC-2/+1
2022-11-05Fix errors from commit f2b697 with --hide-ui-dir-configAngelBottomless-6/+8
https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/f2b69709eaff88fc3a2bd49585556ec0883bf5ea
2022-11-04Merge pull request #4178 from HeyImKyu/PreviewOnBatchCompletionAUTOMATIC1111-1/+1
Added option to preview Created images on batch completion.
2022-11-04produce a readable error message when setting an option fails on the ↵AUTOMATIC-5/+4
settings screen
2022-11-04move option access checking to options class out of various places scattered ↵AUTOMATIC-15/+5
through code
2022-11-04Merge branch 'master' into hn-activationAUTOMATIC1111-284/+132
2022-11-03Lift extras generate button a la #4246.timntorres-2/+2
2022-11-02Added option to preview Created images on batch completion.Kyu♥-1/+1
2022-11-02Merge pull request #3976 from victorca25/esrgan_feaAUTOMATIC1111-1/+1
multiple trivial changes for "extras" models
2022-11-02remove duplicate code from #3970AUTOMATIC-9/+1
2022-11-02switch to gradio 3.8AUTOMATIC-3/+2
2022-11-02fix for extensions' javascript not loadingAUTOMATIC-1/+2
2022-10-31add initial version of the extensions tabAUTOMATIC-5/+11
fix broken Restart Gradio button
2022-10-30add resrgan 8x, allow use 1x and up to 8x extra models, move BSRGAN model, ↵victorca25-1/+1
add nearest
2022-10-29fix broken ↙ button, fix field paste ignoring most of useful fields for ↵AUTOMATIC-28/+15
for #3768
2022-10-29add element ids for save buttons for #3798AUTOMATIC-1/+1
2022-10-29Merge branch 'master' into modal-save-button-and-shortcutAUTOMATIC1111-247/+108
2022-10-29Merge branch 'Inspiron'AUTOMATIC-244/+100
2022-10-29add needed imports fr new code in copypaste.pyAUTOMATIC-7/+0
2022-10-29remove weird spaces added to ui.py over timeAUTOMATIC-26/+25
2022-10-29fix open folder button not workingAUTOMATIC-2/+2
2022-10-29Merge pull request #3874 from cobryan05/extra_tweakAUTOMATIC1111-0/+9
Extras Tab - Option to upscale before face fix, caching improvements
2022-10-29change default hypernet activation function to linearAUTOMATIC-1/+1
2022-10-28extras: Make image cache LRUChris OBryan-0/+5
This changes the extras image cache into a Least-Recently-Used cache. This allows more experimentation with different upscalers without missing the cache. Max cache size is increased to 5 and is cleared on source image update.
2022-10-28extras: Add option to run upscaling before face fixingChris OBryan-0/+4
Face restoration can look much better if ran after upscaling, as it allows the restoration to fix upscaling artifacts. This patch adds an option to choose which order to run upscaling/face fixing in.