Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #8814 from catboxanon/inpaint-mask | AUTOMATIC1111 | 2023-03-25 | 2 | -0/+20 |
|\ | | | | | Add ability to display and/or save inpainting mask and masked composite | ||||
| * | Expose inpainting mask and composite | catboxanon | 2023-03-22 | 2 | -0/+20 |
| | | | | | | | | | | | | For inpainting, this exposes the mask and masked composite and gives the user the ability to display these in the web UI, save to disk, or both. | ||||
* | | Merge pull request #8824 from zimkjh/fix-variable-typo | AUTOMATIC1111 | 2023-03-25 | 1 | -2/+2 |
|\ \ | | | | | | | fix variable typo | ||||
| * | | fix variable typo | carat-johyun | 2023-03-23 | 1 | -2/+2 |
| |/ | |||||
* | | Merge pull request #8647 from Tps-F/add_submodule | AUTOMATIC1111 | 2023-03-25 | 1 | -8/+5 |
|\ \ | | | | | | | Support git submodule for extension and Fix Windows PermissionError | ||||
| * | | Cross device link | Ftps | 2023-03-16 | 1 | -1/+11 |
| | | | |||||
| * | | remove unused library | Ftps | 2023-03-15 | 1 | -2/+0 |
| | | | | | | | | | | | | I'm sorry I forgot. | ||||
| * | | Update ui_extensions.py | Ftps | 2023-03-15 | 1 | -16/+5 |
| |/ | | | | | | | Add git submodule and Fix WinError | ||||
* | | use HTTP request to fetch metadata for Lora cards instead of including it ↵ | AUTOMATIC | 2023-03-25 | 1 | -12/+35 |
| | | | | | | | | into the main page | ||||
* | | Merge pull request #8878 from butaixianran/master | AUTOMATIC1111 | 2023-03-25 | 1 | -1/+5 |
|\ \ | | | | | | | Fix None type error for TI module | ||||
| * | | Fix None type error for TI module | butaixianran | 2023-03-24 | 1 | -1/+5 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When user using model_name.png as a preview image, textural_inversion.py still treat it as an embeding, and didn't handle its error, just let python throw out an None type error like following: ```bash File "D:\Work\Dev\AI\stable-diffusion-webui\modules\textual_inversion\textual_inversion.py", line 155, in load_from_file name = data.get('name', name) AttributeError: 'NoneType' object has no attribute 'get' ``` With just a simple `if data:` checking as following, there will be no error, breaks nothing, and now this module can works fine with user's preview images. Old code: ```python data = extract_image_data_embed(embed_image) name = data.get('name', name) ``` New code: ```python data = extract_image_data_embed(embed_image) if data: name = data.get('name', name) else: # if data is None, means this is not an embeding, just a preview image return ``` Also, since there is no more errors on textual inversion module, from now on, extra network can set "model_name.png" as preview image for embedings. | ||||
* | | Merge pull request #8866 from brkirch/mps-torch-2-0-nn-linear-workarounds | AUTOMATIC1111 | 2023-03-25 | 1 | -1/+8 |
|\ \ | | | | | | | Add PyTorch 2.0 support for macOS, fix image generation on macOS 13.2.X | ||||
| * | | Add workaround for MPS layer_norm on PyTorch 2.0 | brkirch | 2023-03-24 | 1 | -1/+3 |
| | | | | | | | | | | | | On PyTorch 2.0, with MPS layer_norm only accepts float32 inputs. This was fixed shortly after 2.0 was finalized so the workaround can be applied with an exact version match. | ||||
| * | | Add workaround for broken nn.Linear on macOS 13.2 | brkirch | 2023-03-24 | 1 | -0/+5 |
| |/ | | | | | | | Credit to danieldk (https://github.com/explosion/curated-transformers/pull/124) for the workaround this is based on. | ||||
* | | Merge pull request #8782 from FNSpd/master | AUTOMATIC1111 | 2023-03-25 | 2 | -3/+3 |
|\ \ | | | | | | | --upcast-sampling support for CUDA | ||||
| * | | Update devices.py | FNSpd | 2023-03-24 | 1 | -1/+1 |
| | | | |||||
| * | | Update sd_hijack_optimizations.py | FNSpd | 2023-03-24 | 1 | -1/+1 |
| | | | |||||
| * | | Update sd_hijack_unet.py | FNSpd | 2023-03-24 | 1 | -1/+1 |
| | | | |||||
| * | | Update sd_hijack_optimizations.py | FNSpd | 2023-03-21 | 1 | -1/+1 |
| | | | |||||
| * | | Update sd_hijack_unet.py | FNSpd | 2023-03-21 | 1 | -1/+1 |
| | | | |||||
| * | | Update devices.py | FNSpd | 2023-03-21 | 1 | -1/+1 |
| |/ | |||||
* | | bump gradio to 3.23 | AUTOMATIC | 2023-03-25 | 2 | -2/+9 |
| | | | | | | | | fix broken image dragging | ||||
* | | fix extra networks ui | AUTOMATIC | 2023-03-25 | 1 | -1/+1 |
| | | |||||
* | | enable queue by default | AUTOMATIC | 2023-03-25 | 3 | -4/+5 |
| | | | | | | | | more stylistic changes | ||||
* | | hide delete button for single-item dropdown | AUTOMATIC | 2023-03-25 | 3 | -3/+16 |
| | | | | | | | | more stylistic changes | ||||
* | | fix ctrl+up/down attention edit | AUTOMATIC | 2023-03-25 | 1 | -2/+2 |
| | | | | | | | | | | fix dropdown obscured by live preview stylistic changes | ||||
* | | initial gradio 3.22 support | AUTOMATIC | 2023-03-25 | 5 | -37/+50 |
|/ | |||||
* | Merge pull request #8503 from mcmonkey4eva/filename-length-limit-fix | AUTOMATIC1111 | 2023-03-14 | 1 | -0/+5 |
|\ | | | | | Add correction file filename length limits on *nix systems | ||||
| * | update `fullfn` properly | Alex "mcmonkey" Goodwin | 2023-03-12 | 1 | -0/+1 |
| | | |||||
| * | add safety check in case of short extensions | Alex "mcmonkey" Goodwin | 2023-03-12 | 1 | -1/+1 |
| | | | | | | | | so eg if a two-letter or empty extension is used, `.txt` would break, this `max` call protects that. | ||||
| * | relocate filename length limit to better spot | Alex "mcmonkey" Goodwin | 2023-03-12 | 1 | -3/+4 |
| | | |||||
| * | initial fix for filename length limits on *nix systems | Alex "mcmonkey" Goodwin | 2023-03-11 | 1 | -0/+3 |
| | | |||||
* | | fix an error loading Lora with empty values in metadata | AUTOMATIC | 2023-03-14 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #8589 from vladmandic/unipc | AUTOMATIC1111 | 2023-03-14 | 2 | -3/+4 |
|\ \ | | | | | | | add progressbar to unipc sampler | ||||
| * | | add pbar to unipc | Vladimir Mandic | 2023-03-13 | 2 | -3/+4 |
| | | | |||||
* | | | Merge pull request #8588 from hananbeer/fix/undefined_extra_network_data | AUTOMATIC1111 | 2023-03-14 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | initialize extra_network_data before use | ||||
| * | | | initialize extra_network_data before use | high_byte | 2023-03-13 | 1 | -1/+2 |
| | | | | |||||
* | | | | Update ui_extra_networks.py | willtakasan | 2023-03-14 | 1 | -2/+2 |
| | | | | | | | | | | | | I updated it so that no error message is displayed when setting a webp for the preview image. | ||||
* | | | | Add view metadata button for Lora cards. | AUTOMATIC | 2023-03-14 | 2 | -0/+31 |
| |/ / |/| | | |||||
* | | | display correct timings after restarting UI | AUTOMATIC | 2023-03-12 | 1 | -0/+3 |
| | | | |||||
* | | | attempt to fix memory monitor with multiple CUDA devices | AUTOMATIC | 2023-03-12 | 1 | -4/+8 |
| | | | |||||
* | | | change extension index link to the new dedicated repo instead of wiki | AUTOMATIC | 2023-03-12 | 1 | -1/+1 |
| | | | |||||
* | | | force refresh tqdm before close | Vladimir Mandic | 2023-03-12 | 1 | -0/+1 |
| | | | |||||
* | | | Merge pull request #8492 from zhanghua000/absolute-path | AUTOMATIC1111 | 2023-03-12 | 2 | -2/+6 |
|\ \ \ | | | | | | | | | fix: gradio's ValueError about fetching extensions files | ||||
| * | | | modules/sd_vae_approx.py: fix VAE-approx path | Zhang Hua | 2023-03-11 | 1 | -1/+4 |
| | | | | |||||
| * | | | models/ui.py: make the path of script.js absolute | Zhang Hua | 2023-03-11 | 1 | -1/+2 |
| | | | | |||||
* | | | | Merge pull request #7965 from Kilvoctu/extranet-buttons | AUTOMATIC1111 | 2023-03-12 | 1 | -2/+0 |
|\ \ \ \ | | | | | | | | | | | Use emojis for extra network buttons | ||||
| * | | | | restore text, remove 'close' | Kilvoctu | 2023-03-11 | 1 | -7/+1 |
| | | | | | | | | | | | | | | | | | | | | don't use emojis for extra network buttons; remove 'close' | ||||
| * | | | | use emojis for extra network buttons | Kilvoctu | 2023-02-20 | 1 | -2/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | 🔄 for refresh ❌ for close | ||||
* | | | | | Merge pull request #8515 from EllangoK/unipc-typo | AUTOMATIC1111 | 2023-03-12 | 1 | -1/+1 |
|\ \ \ \ \ | | | | | | | | | | | | | Fix dims typo in unipc |