aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add option to preload extensionsd8ahazard2022-11-082-2/+26
| | | | By creating a file called "preload.py" in an extension folder and declaring a preload(parser) method, we can add extra command-line args for an extension.
* Remove old localizations from the main repo.AUTOMATIC2022-11-0812-7339/+0
| | | | Where are they now? Here: https://github.com/AUTOMATIC1111/stable-diffusion-webui-old-localizations
* add callback for creating a tab in train UIAUTOMATIC2022-11-082-2/+29
|
* move functions out of main body for image preprocessing for easier hijackingAUTOMATIC2022-11-081-69/+93
|
* fix javascript duplication bug after pressing the restart UI buttonAUTOMATIC2022-11-081-3/+4
|
* bump gradio to 3.9AUTOMATIC2022-11-062-2/+2
|
* load all settings in one call instead of one by one when the page loadsAUTOMATIC2022-11-061-6/+16
|
* Merge pull request #3810 from royshil/roy.add_simple_interrogate_apiAUTOMATIC11112022-11-062-0/+22
|\ | | | | Add a barebones CLIP interrogate API endpoint
| * Merge branch 'master' into roy.add_simple_interrogate_apiAUTOMATIC11112022-11-0657-1708/+3830
| |\ | |/ |/|
* | add load_with_extra function for modules to load checkpoints with extended ↵AUTOMATIC2022-11-061-3/+37
| | | | | | | | whitelist
* | remove localization people from CODEOWNERS add a noteAUTOMATIC2022-11-061-12/+11
| |
* | add tags to extensions, and ability to filter out tagsAUTOMATIC2022-11-064-23/+64
| | | | | | | | | | list changed Settings keys in UI do not print VRAM/etc stats everywhere but in calls that use GPU
* | add ability to create extensions that add localizationsAUTOMATIC2022-11-066-9/+14
| |
* | Merge pull request #4371 from hotdogee/masterAUTOMATIC11112022-11-061-3/+11
|\ \ | | | | | | Fixes #800 #1562 #2075 #2304 #2931 LDSR upscaler producing black bars
| * | Fixes LDSR upscaler producing black barsHan Lin2022-11-061-3/+11
|/ /
* | Merge pull request #4342 from Harvester62/ItalianEugenio Buffo2022-11-051-91/+423
|\ \ | | | | | | Italian localization - Additions and updates
| * | Italian localization - Additions and updatesRiccardo Giovanetti2022-11-051-91/+423
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated localization with the latest version of these Scripts/Extensions: SD-Chad - Stable Diffusion Aesthetic Scorer (added) AlphaCanvas StylePile Alternate Sampler Noise Schedules SD Latent Mirroring (new) SD Dynamic Prompts Dataset Tag Editor Depth Maps (new) Improved prompt matrix (new) New Extensions: Auto-sd-paint-ext (new) training-picker (new) Unprompted NovelAI-2-local-prompt (new) tokenizer (new) Hope there aren't too many mistakes or wrong translations, in case let me know.
* | Merge pull request #4337 from 36DB/kr-localizationDynamic2022-11-051-0/+8
|\ \ | | | | | | Update ko_KR.json
| * | Update ko_KR.jsonDynamic2022-11-051-0/+8
|/ / | | | | New setting option and some additional extension index strings
* | tweak names a bit for new samplersAUTOMATIC2022-11-051-4/+4
| |
* | Merge pull request #4304 from hentailord85ez/k-diffusion-updateAUTOMATIC11112022-11-052-1/+5
|\ \ | | | | | | Add support for the new DPM-Solver++ samplers added to k-diffusion
| * | Reorder samplershentailord85ez2022-11-041-2/+2
| | |
| * | Fix namehentailord85ez2022-11-041-1/+1
| | |
| * | Add support for new DPM-Solver++ samplershentailord85ez2022-11-041-0/+4
| | |
| * | Update k-diffusion to release 0.0.10hentailord85ez2022-11-041-1/+1
| | |
* | | Merge pull request #4329 from Blucknote/patch-1AUTOMATIC11112022-11-051-4/+4
|\ \ \ | | | | | | | | Python 3.8 typing compatibility
| * | | Python 3.8 typing compatibilityEvgeniy2022-11-051-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Solves problems with ```Traceback (most recent call last): File "webui.py", line 201, in <module> webui() File "webui.py", line 178, in webui create_api(app) File "webui.py", line 117, in create_api from modules.api.api import Api File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\api.py", line 9, in <module> from modules.api.models import * File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 194, in <module> class SamplerItem(BaseModel): File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 196, in SamplerItem aliases: list[str] = Field(title="Aliases") TypeError: 'type' object is not subscriptable``` and ```Traceback (most recent call last): File "webui.py", line 201, in <module> webui() File "webui.py", line 178, in webui create_api(app) File "webui.py", line 117, in create_api from modules.api.api import Api File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\api.py", line 9, in <module> from modules.api.models import * File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 194, in <module> class SamplerItem(BaseModel): File "H:\AIart\stable-diffusion\stable-diffusion-webui\modules\api\models.py", line 197, in SamplerItem options: dict[str, str] = Field(title="Options") TypeError: 'type' object is not subscriptable```
* | | | Merge pull request #4173 from evshiron/fix/encode-pnginfoAUTOMATIC11112022-11-051-11/+24
|\ \ \ \ | | | | | | | | | | add back png info in image api
| * \ \ \ Merge branch 'master' into fix/encode-pnginfoevshiron2022-11-0510-37/+132
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | rework the code to not use the walrus operator because colab's 3.7 does not ↵AUTOMATIC2022-11-051-2/+5
| |/ / / |/| | | | | | | | | | | support it
* | | | Merge pull request #4297 from AUTOMATIC1111/aria1th-patch-1AUTOMATIC11112022-11-051-6/+8
|\ \ \ \ | | | | | | | | | | Fix errors from commit f2b697 with --hide-ui-dir-config
| * | | | Fix errors from commit f2b697 with --hide-ui-dir-configAngelBottomless2022-11-041-6/+8
| | | | | | | | | | | | | | | https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/f2b69709eaff88fc3a2bd49585556ec0883bf5ea
* | | | | Merge pull request #4294 from evshiron/feat/allow-originsAUTOMATIC11112022-11-052-3/+13
|\ \ \ \ \ | | | | | | | | | | | | add --cors-allow-origins cmd opt
| * \ \ \ \ Merge branch 'master' into feat/allow-originsAUTOMATIC11112022-11-059-28/+108
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Merge pull request #4293 from AUTOMATIC1111/innovaciones-patch-1AUTOMATIC11112022-11-051-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Open extensions links in new tab
| * | | | | | Open extensions links in new tabinnovaciones2022-11-041-1/+1
| | |/ / / / | |/| | | | | | | | | | Fixed for "Available" tab
* | | | | | Merge pull request #4273 from Omegastick/ordered_hypernetworksAUTOMATIC11112022-11-051-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Sort hypernetworks list
| * | | | | | Sort straight out of the globIsaac Poulton2022-11-041-2/+2
| | | | | | |
| * | | | | | Sort hypernetworksIsaac Poulton2022-11-041-1/+1
| | | | | | |
* | | | | | | Merge pull request #3975 from aria1th/force-push-patch-13AUTOMATIC11112022-11-053-6/+51
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Save/loading AdamW optimizer (for hypernetworks)
| * | | | | | | Update shared.pyAngelBottomless2022-11-041-1/+1
| | | | | | | |
| * | | | | | | only save if option is enabledaria1th2022-11-041-1/+1
| | | | | | | |
| * | | | | | | split before declaring file namearia1th2022-11-041-1/+1
| | | | | | | |
| * | | | | | | applyaria1th2022-11-041-5/+49
| | | | | | | |
| * | | | | | | Merge branch 'AUTOMATIC1111:master' into force-push-patch-13AngelBottomless2022-11-0419-390/+942
| |\ \ \ \ \ \ \
| * | | | | | | | I blame code autocompleteAngelBottomless2022-11-041-49/+27
| | | | | | | | |
| * | | | | | | | resolve conflict - first revertaria1th2022-11-041-71/+52
| | | | | | | | |
| * | | | | | | | use hash to check valid optimaria1th2022-11-031-4/+9
| | | | | | | | |
| * | | | | | | | Separate .optim file from modelaria1th2022-11-031-4/+8
| | | | | | | | |
| * | | | | | | | now addAngelBottomless2022-11-021-0/+1
| | | | | | | | |