aboutsummaryrefslogtreecommitdiffstats
path: root/javascript
AgeCommit message (Collapse)AuthorLines
2023-04-29Merge pull request #9108 from AUTOMATIC1111/img2img-scale-byAUTOMATIC1111-0/+5
add "resize by" and "resize to" tabs to img2img
2023-04-29Merge branch 'dev' into extension-settings-backupAUTOMATIC1111-25/+44
2023-04-29Merge branch 'dev' into remove-watermark-optionAUTOMATIC1111-27/+47
2023-04-29rework Negative Guidance minimum sigma to work with AND, add infotext and ↵AUTOMATIC-1/+2
copypaste parameters support
2023-04-29Merge branch 'dev' into generation_params_fixAUTOMATIC1111-20/+39
2023-04-29Merge branch 'dev' into Branch_AddNewFilenameGenAUTOMATIC1111-185/+179
2023-04-29Merge pull request #9750 from TFWol/patch-1AUTOMATIC1111-8/+0
Remove old code roll random artists
2023-04-29Merge pull request #9060 from AlUlkesh/masterAUTOMATIC1111-3/+6
fix: lightboxModal, selectedTab
2023-04-29Merge pull request #9227 from bbonvi/masterAUTOMATIC1111-1/+1
fix disappearing live previews and progressbar during slow tasks
2023-04-25Custom delimitersmissionfloyd-1/+1
2023-04-24pull progress for 40 secondsbbonvi-1/+1
for some extreme network conditions 20 seconds may not be enough
2023-04-21Remove hyphen, underscore delimitersmissionfloyd-1/+1
2023-04-21Remove parentheses if weight == 1missionfloyd-2/+8
2023-04-20Update delimitersmissionfloyd-1/+1
2023-04-20Simplify finding word boundariesmissionfloyd-17/+9
This also makes it work with prompts without spaces between words
2023-04-20Use string.contains() instead of regexmissionfloyd-2/+3
2023-04-19Automatically select current wordmissionfloyd-5/+30
2023-04-19Remove old code roll random artistsTFWol-8/+0
Removed context menu entry that used to be for rolling artists from the now removed artists.csv. It was probably meant to be removed at commit 6d805b6.
2023-04-15Add new FilenameGenerator [hasprompt<prompt1|default><prompt2>..]tqwuliao-2/+2
2023-04-03fixed logic for updating the displayed generation params when the image ↵Liam-3/+3
modal is closed
2023-03-31fix missing live preview and progress during certain tasksbbonvi-1/+1
Sometimes tasks take longer than 5 seconds to start, resulting in missing progress bar and livepreviews, so we have to keep pulling for progress a bit longer (5s -> 20s).
2023-03-29Various UI fixes in config state tabspace-nuko-2/+8
2023-03-29Save/restore working webui/extension configsspace-nuko-0/+16
2023-03-28try both versions of appendChildAlUlkesh-2/+5
2023-03-28add "resize by" and "resize to" tabs to img2imgAUTOMATIC-0/+5
2023-03-28Revert "Merge pull request #7931 from space-nuko/img2img-enhance"AUTOMATIC-21/+1
This reverts commit 426875937048e21305ac24bea53df06523bdaa81, reversing changes made to 1b63afbedc7789c0eb9a4742b780ab304d7a9caf.
2023-03-28Merge pull request #7931 from space-nuko/img2img-enhanceAUTOMATIC1111-1/+21
Add `Upscale by` and `Upscaler` options to img2img
2023-03-28Merge branch 'master' into img2img-enhancespace-nuko-52/+62
2023-03-27Merge branch 'master' into remove-watermark-optionspace-nuko-164/+139
2023-03-27fix: lightboxModal, selectedTabAlUlkesh-2/+2
2023-03-27Make disable configurable between builtin/extra extensionsspace-nuko-3/+3
2023-03-27Merge pull request #8569 from missionfloyd/extra-networks-toggleAUTOMATIC1111-2/+1
Make extra networks button togglable
2023-03-27Merge pull request #8938 from space-nuko/fix-image-ar-overlayAUTOMATIC1111-23/+26
Fix img2img aspect ratio overlay in Gradio 3.23.0
2023-03-25Merge branch 'master' into extra-networks-togglemissionfloyd-116/+117
2023-03-25Fix Send to img2img buttonsspace-nuko-26/+34
2023-03-25Fix img2img aspect ratio overlay in Gradio 3.23.0space-nuko-23/+26
2023-03-25Fix notifications not triggeringspace-nuko-1/+1
2023-03-25Use .success() callback on img2img preview inputs changespace-nuko-8/+0
2023-03-25img2img resolution preview should use currently selected tab's imagespace-nuko-3/+10
2023-03-25Add upscale slider to img2imgspace-nuko-2/+23
2023-03-25final part of merging #8749AUTOMATIC-4/+4
2023-03-25Merge branch 'master' into extra-network-infoAUTOMATIC1111-114/+77
2023-03-25Merge pull request #8799 from JaRail/masterAUTOMATIC1111-4/+5
Loopback Script Updates
2023-03-25use HTTP request to fetch metadata for Lora cards instead of including it ↵AUTOMATIC-0/+36
into the main page
2023-03-25fix generate forever and other context menusAUTOMATIC-1/+1
2023-03-25fix ctrl+up/down attention editAUTOMATIC-1/+1
fix dropdown obscured by live preview stylistic changes
2023-03-25initial gradio 3.22 supportAUTOMATIC-108/+34
2023-03-23Remove "do not add watermark to images" optionspace-nuko-1/+0
2023-03-21Loopback Script UpdatesJames Railton-4/+5
- Improved user experience. You can now pick the denoising strength of the final loop and one of three curves. Previously you picked a multiplier such as 0.98 or 1.03 to define the change to the denoising strength for each loop. You had to do a ton of math in your head to visualize what was happening. The new UX makes it very easy to understand what's going on and tweak. - For batch sizes over 1, intermediate images no longer returned. For a batch size of 1, intermediate images from each loop will continue to be returned. When more than 1 image is returned, a grid will also be generated. Previously for larger jobs, you'd get back a mess of many grids and potentially hundreds of images with no organization. To make large jobs usable, only final images are returned. - Added support for skipping current image. Fixed interrupt to cleanly end and return images. Previously these would throw. - Improved tooltip descriptions - Fix some edge cases
2023-03-20Add event.stopPropagation() to extraNetworksShowMetadata()missionfloyd-1/+3
Prevent bubbling the same way "replace preview" does