Commit Graph

1846 Commits

Author SHA1 Message Date
65348e1cb9 generated by zdzislaw beksinski portrait & landscape 2023-03-31 20:57:00 -07:00
22ca01bbde create folder by_zdzislaw_beksinski 2023-03-31 20:56:22 -07:00
c772347c09 add artist Zdzislaw Beksinski 2023-03-31 20:54:00 -07:00
afc18619db Remove console.log 2023-03-31 17:26:16 -04:00
5dd3f46cee Fix key presses in the image editor
https://discord.com/channels/1014774730907209781/1021695193499582494/1090733238034645082
2023-03-31 00:02:44 -07:00
11138a1d97 Don't include LoRA in the task info if not used 2023-03-30 19:08:10 +05:30
aea49bf739 Merge pull request #1085 from lucasmarcelli/beta
reworked how task config is setup
2023-03-30 19:06:25 +05:30
8f877a2cee Remove Ctrl+Z for undoing task removals until the conflict with other listeners for Ctrl+Z can be figured out 2023-03-30 18:44:21 +05:30
dc4344043e Merge pull request #1079 from JeLuF/toggle
Don't show lossless WEBP toggle for JPEG on first load
2023-03-30 18:11:09 +05:30
fe635db3ab Remove log.infos 2023-03-29 21:02:35 -04:00
7e53eb658c Allow loading/saving app.config from plugins and support custom folder/filename formats from app.config 2023-03-29 20:56:24 -04:00
4836abb5bd reworked how task config is setup 2023-03-29 13:52:41 -04:00
67746981e7 Merge beta 2023-03-29 15:39:37 +02:00
e5a47ac964 Allow both embedding metadata and saving metadata files (#1058)
* Allow both embedding metadata and saving metadata files

* Use the correct variable

* Descriptive variable

---------

Co-authored-by: cmdr2 <shashank.shekhar.global@gmail.com>
2023-03-29 09:19:05 +05:30
40598c28af Don't show lossless WEBP toggle for JPEG on first load
https://discord.com/channels/1014774730907209781/1021695193499582494/1090402304173277266
2023-03-29 00:46:13 +02:00
044e3746ca Undo on mac 2023-03-28 17:32:20 +05:30
969eb5632f Merge pull request #1046 from ogmaresca/fix-empty-space-at-bottom
Fix the empty space at the bottom of the page
2023-03-28 17:16:12 +05:30
03800a45e0 Allow Ctrl+Z to undo the removal of images/tasks 2023-03-28 17:13:37 +05:30
9ee17ec5f1 changelog 2023-03-28 15:58:18 +05:30
72d991afaa Merge pull request #1041 from JeLuF/undo
Add undo support
2023-03-28 15:52:20 +05:30
a858d4d1ba Merge pull request #1062 from patriceac/patch-59
Fix restoration of disabled image tags
2023-03-28 15:46:31 +05:30
590472cab2 Merge pull request #1063 from patriceac/patch-61
Fire event when random seed is toggled by dnd.js
2023-03-28 15:45:50 +05:30
d988c80874 Merge pull request #1060 from ogmaresca/improve-status-overlap
Fix tab bar when there's many plugin tabs
2023-03-28 15:45:26 +05:30
8e705f0785 Merge pull request #1059 from ogmaresca/allow-lossless-webp
Allow saving lossless WEBPs
2023-03-28 15:43:54 +05:30
728e7c79fd Add support for LoRA models to dnd.js (#1054)
* Add support for LoRA to dnd.js

Adds support for LoRA to dnd.js (task restoration, use settings, etc.).

* Correct extensions for LoRA

---------

Co-authored-by: cmdr2 <shashank.shekhar.global@gmail.com>
2023-03-28 15:37:50 +05:30
a10dfd0386 Moving attention weighting to InvokeAI syntax (#1055)
* Moving attention weighting to InvokeAI syntax

() and [] were actually ignored by the legacy parser, so moving the Ctrl+Wheel shortcut to the InvokeAI syntax of '+' and '-'.

* Moving attention weighting to InvokeAI syntax

() and [] were actually ignored by the legacy parser, so moving the Ctrl+Wheel shortcut to the InvokeAI syntax of '+' and '-'.

* Properly cleanup parenthesis

'(image tag)++' need to be trimmed to 'image tag'

* Add parenthesis as needed when adjusting weights

In the InvokeAI syntax, 'image modifier' must become '(image modifier)++' when adjusting weight.

* Code cleanup
2023-03-28 15:35:51 +05:30
d81be64711 Merge pull request #1052 from patriceac/patch-52
Fix for Clear button in image editor
2023-03-28 15:34:57 +05:30
e4550f7eb4 Merge pull request #1034 from JeLuF/short
Make file names of downloaded files shorter
2023-03-28 15:33:40 +05:30
e65ee76076 changelog 2023-03-27 15:13:02 +05:30
48b233304f Only notify upon disabling 2023-03-25 02:51:46 -07:00
1c2e353fc5 Fire event when random seed is toggled by dnd.js
This is to let plugins know that the state of the random seed toggle was programmatically changed by dnd.js. No change for regular UI.
2023-03-25 02:47:05 -07:00
356375677d Fix restoration of disabled image tags
Fix a regression introduced by PR 1003 that causes disabled image tags to be restored in an enabled state by the "image modifiers improvements" plugin. No change in the regular UX.
2023-03-25 02:09:11 -07:00
2af1b5c064 Make tab bar scrollable and improve SD status overlaps 2023-03-24 23:54:31 -04:00
e42ddbd652 Allow saving lossless WEBPs 2023-03-24 22:46:03 -04:00
d1f341678c Fix for Clear button in image editor 2023-03-24 00:08:51 -07:00
d8cfd35a94 changelog 2023-03-24 09:29:08 +05:30
6ef72f03ff Merge pull request #1048 from JeLuF/base36
🔥Hotfix: Avoid name clashes for autosave files
2023-03-23 09:48:40 +05:30
872c09c220 Avoid name clashes for autosave files
The old code had a 1.6% chance of name collisions (AAb/345 and AAB3/45 would generate the same filename) on Linux and 39% on Windows (base64 is case sensitive, Windows isn't).

This code uses base36 (0-9, A-Z) to avoid case issues. To avoid collisions on fast computers or multi GPU computers, the time resolution of the timestamp is changed from seconds to 0.1ms, and the image number isn't added to the timestamp but appended as an extra character. Due to the limitation of the timestamps to 7 characters, the timecode will repeat every 90 days. This shouldn't be an issue since most sessions will not last this long.
2023-03-22 23:06:03 +01:00
8efde22580 typo 2023-03-22 16:44:41 +05:30
7a4002a17a Remove the empty space at the bottom of the page 2023-03-21 21:39:41 -04:00
fbaa11f08d Add LORA model to metadata files 2023-03-21 18:09:59 -04:00
3faaed9819 Send the lora model in the request only if in test_diffusers mode 2023-03-21 20:45:12 +05:30
593e9748b9 Merge branch 'beta' of github.com:cmdr2/stable-diffusion-ui into beta 2023-03-21 18:11:16 +05:30
f8d260e0a7 changelog 2023-03-21 18:02:36 +05:30
f8bc50871a sdkit 1.0.49; Use a test_diffusers flag to gate access to the new renderer and LoRA model selection 2023-03-21 17:59:20 +05:30
4871f7fed7 UNDO_LIMIT 2023-03-21 01:31:12 +01:00
0f3a3da5ed Add undo support 2023-03-20 22:53:13 +01:00
ec6922b885 Merge pull request #1038 from JeLuF/karras
Add 'Karras' tag to DPM samplers
2023-03-20 20:00:26 +05:30
c9a05e0290 Add 'Karras' tag to DPM samplers 2023-03-20 14:52:45 +01:00
856724b9a5 Merge pull request #1036 from JeLuF/overlap
Prevent collisions of 'What's new' and the server status
2023-03-20 09:51:22 +05:30