aboutsummaryrefslogtreecommitdiffstats
path: root/extensions-builtin
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #11535 from gshawn3/bugfix/11534AUTOMATIC11112023-07-082-1/+30
|\ | | | | fix for #11534: canvas zoom and pan extension hijacking shortcut keys
| * made the blur function optional, added exclusion buttonsDanil Boldyrev2023-07-042-7/+14
| |
| * fixing the copy/paste function, correct codeDanil Boldyrev2023-07-021-28/+39
| |
| * fix for #11534: canvas zoom and pan extension hijacking shortcut keysgshawn32023-06-301-19/+30
| |
* | Merge pull request #10823 from akx/model-loadyAUTOMATIC11112023-06-273-55/+48
|\ \ | |/ |/| Upscaler model loading cleanup
| * Remove stray space from SwinIR model URLAarni Koskela2023-06-131-3/+2
| |
| * Upscaler.load_model: don't return None, just use exceptionsAarni Koskela2023-06-133-38/+31
| |
| * Add TODO comments to sus model loadsAarni Koskela2023-06-131-0/+1
| |
| * Fix up `if "http" in ...:` to be more sensible startswithsAarni Koskela2023-06-132-4/+4
| |
| * Move `load_file_from_url` to modelloaderAarni Koskela2023-06-133-10/+10
| |
* | Formatting code with PrettierDanil Boldyrev2023-06-131-75/+95
| |
* | Reworked the disabling of functions, refactored part of the codeDanil Boldyrev2023-06-133-135/+121
| |
* | remove console.logDanil Boldyrev2023-06-121-2/+0
| |
* | Improved error output, improved settings menuDanil Boldyrev2023-06-122-38/+145
|/
* Don't die when a LoRA is a broken symlinkAarni Koskela2023-06-091-1/+5
| | | | Fixes #11098
* Merge pull request #11031 from akx/zoom-and-pan-namespaceAUTOMATIC11112023-06-051-124/+111
|\ | | | | Zoom and pan: namespace & simplify
| * Zoom and Pan: simplify waitForOptsAarni Koskela2023-06-051-8/+6
| |
| * Zoom and Pan: use for instead of forEachAarni Koskela2023-06-051-10/+7
| |
| * Zoom and Pan: simplify getElements (it's not actually async)Aarni Koskela2023-06-051-10/+4
| |
| * Zoom and Pan: use elementIDs from closure scopeAarni Koskela2023-06-051-18/+18
| |
| * Zoom and Pan: move helpers into its namespace to avoid littering global scopeAarni Koskela2023-06-051-97/+95
| |
* | Merge pull request #10956 from akx/lenAUTOMATIC11112023-06-055-8/+9
|\ \ | |/ |/| Simplify a bunch of `len(x) > 0`/`len(x) == 0` style expressions
| * Simplify a bunch of `len(x) > 0`/`len(x) == 0` style expressionsAarni Koskela2023-06-025-8/+9
| |
* | Correct definition zoom levelDanil Boldyrev2023-06-041-13/+8
| | | | | | | | I changed the regular expression and now I always have to select scale from style.transfo
* | Fixed visual bugsDanil Boldyrev2023-06-041-6/+7
| |
* | Made a function applyZoomAndPan isolated each instanceDanil Boldyrev2023-06-041-97/+113
| | | | | | | | Isolated each instance of applyZoomAndPan, now if you add another element to the page, they will work correctly
* | Fixed the redmask bugDanil Boldyrev2023-06-031-1/+67
| |
* | Made the applyZoomAndPan function global for other extensionsDanil Boldyrev2023-06-031-4/+15
| |
* | Merge pull request #10943 from catboxanon/sortAUTOMATIC11112023-06-031-1/+3
|\ \ | | | | | | Allow dynamically sorting extra networks in UI
| * | Apply suggestions from code reviewcatboxanon2023-06-021-1/+2
| | | | | | | | | Co-authored-by: Aarni Koskela <akx@iki.fi>
| * | Support dynamic sort of extra networkscatboxanon2023-06-021-1/+2
| |/
* | small ui fixDanil Boldyrev2023-06-021-1/+1
| | | | | | | | In the error the user will see R instead of KeyR
* | Added the ability to swap the zoom hotkeys and resize the brushDanil Boldyrev2023-06-022-7/+19
| |
* | Made tooltip optional.Danil Boldyrev2023-06-022-51/+72
| | | | | | | | | | You can disable it in the settings. Enabled by default
* | Added a hotkey repeat check to avoid bugsDanil Boldyrev2023-06-011-7/+9
| |
* | Added the ability to configure hotkeys via webuiDanil Boldyrev2023-06-012-21/+75
| | | | | | | | | | | | Now you can configure the hotkeys directly through the settings JS and Python scripts are tested and code style compliant
* | Fixed the problem with sticking to the mouse, created a tooltipDanil Boldyrev2023-05-312-7/+124
|/
* add an option to show selected setting in main txt2img/img2img UIAUTOMATIC2023-05-311-0/+48
| | | | | | split some code from ui.py into ui_settings.py ui_gradio_edxtensions.py add before_process callback for scripts add ability for alwayson scripts to specify section and let user reorder those sections
* rename print_error to report, use it with together with package nameAUTOMATIC2023-05-312-6/+4
|
* Merge branch 'dev' into report-errorAUTOMATIC11112023-05-313-1/+579
|\
| * Merge pull request #10759 from daswer123/devAUTOMATIC11112023-05-311-0/+431
| |\ | | | | | | Add the ability to zoom and move the canvas
| | * a small fix for very wide images, because of the scroll bar was the wrong zoomDanil Boldyrev2023-05-301-1/+4
| | |
| | * Moved the script to the extension build-inDanil Boldyrev2023-05-291-0/+428
| | |
| * | Vendor in the single module used from taming_transformers; remove ↵Aarni Koskela2023-05-302-1/+148
| |/ | | | | | | | | | | taming_transformers dependency (and fix the two ruff complaints)
* / Add & use modules.errors.print_error where currently printing exception info ↵Aarni Koskela2023-05-292-8/+5
|/ | | | by hand
* calculate hashes for LoraAUTOMATIC2023-05-194-16/+98
| | | | | add lora hashes to infotext when pasting infotext, use infotext's lora hashes to find local loras for <lora:xxx:1> entries whose hashes match loras the user has
* Merge pull request #10550 from akx/git-blame-ignore-revsAUTOMATIC11112023-05-191-1/+1
|\ | | | | Add .git-blame-ignore-revs
| * Fix ruff lintAarni Koskela2023-05-191-1/+1
| |
* | change upscalers to download models into user-specified directory (from ↵AUTOMATIC2023-05-193-5/+4
|/ | | | commandline args) rather than the default models/<...>
* Merge pull request #10529 from ryankashi/masterAUTOMATIC11112023-05-191-0/+4
|\ | | | | Added /sdapi/v1/refresh-loras api checkpoint post request