AUTOMATIC1111
1b3093fe3a
fix --use-textbox-seed
2023-08-10 15:58:53 +03:00
AUTOMATIC1111
faca86620d
linter fixes
2023-08-10 12:58:00 +03:00
AUTOMATIC1111
33446acf47
face restoration and tiling moved to settings - use "Options in main UI" setting if you want them back
2023-08-10 12:41:41 +03:00
AUTOMATIC1111
9199b6b7eb
add a custom UI element that combines accordion and checkbox
...
rework hires fix UI to use accordion
prevent bogus progress output in console when calculating hires fix dimensions
2023-08-10 11:20:46 +03:00
catboxanon
ff1bfd01ba
Remove up down symbol
2023-08-09 14:41:25 -04:00
AUTOMATIC1111
386245a264
split shared.py into multiple files; should resolve all circular reference import errors related to shared.py
2023-08-09 10:25:35 +03:00
AUTOMATIC1111
70c63c1208
pass samplers from UI by name, make it possible to use a sampler from infotext even if it's hidden in the dropdown
2023-08-08 21:28:34 +03:00
catboxanon
7d8f55ec7c
Remove style method
2023-08-07 01:45:10 -04:00
Diego Casorran
e866c35462
add explicit content-type header for image/webp
2023-08-06 12:25:04 +00:00
AUTOMATIC1111
8197f24dbc
remove the extra networks button
2023-08-05 08:07:13 +03:00
AUTOMATIC1111
ef1698fd6d
Merge branch 'dev' into extra-networks-always-visible
2023-08-05 08:01:38 +03:00
AUTOMATIC1111
0ae2767ae6
Merge pull request #12181 from AUTOMATIC1111/hires_checkpoint
...
Hires fix change checkpoint
2023-08-05 07:47:34 +03:00
w-e-w
1d60a609a9
configurable masks color and default brush color
2023-08-05 09:34:26 +09:00
AUTOMATIC1111
682ff8936d
glorious, glorious wonderful clear milky white butter smooth color for inpainting
...
you are the best, gradio
how I yearned for this day
i always believed in you
i knew you had it in you
this day marks a new beginning
thank you, everyone
thank you
2023-08-04 18:51:25 +03:00
AUTOMATIC1111
2e613a6ffc
Merge pull request #12304 from catboxanon/fix/extras-infotext-paste
...
Correctly toggle extras checkbox for infotext paste
2023-08-04 12:04:11 +03:00
catboxanon
f5994e84a2
Cleanup extras checkbox infotext paste check
2023-08-04 04:57:01 -04:00
catboxanon
7c5480eb96
Cleanup hr infotext paste check mk2
2023-08-04 04:42:35 -04:00
catboxanon
67312653d7
Cleanup hr infotext paste check
2023-08-04 04:40:56 -04:00
catboxanon
d89a915b74
Only enable hr fix if hr scale or upscale in infotext on paste
2023-08-04 04:03:37 -04:00
catboxanon
ac8dfd9386
Toggle extras checkbox for infotext paste
2023-08-04 03:52:22 -04:00
AUTOMATIC1111
362789a379
gradio 3.39
2023-08-04 08:04:23 +03:00
AUTOMATIC1111
09c1be9674
put some of the shared functionality into toprow
...
write a comment for the toprow
2023-08-03 23:31:14 +03:00
AUTOMATIC1111
af528552d6
fix linter issues
2023-08-03 23:31:14 +03:00
AUTOMATIC1111
20549a50cb
add style editor dialog
...
rework toprow for img2img and txt2img to use a class with fields
fix the console error when editing checkpoint user metadata
2023-08-03 23:31:13 +03:00
AUTOMATIC1111
6d3a0c9506
move checkpoint merger UI to its own file
2023-08-01 07:43:43 +03:00
AUTOMATIC1111
0042954490
Split history: mv temp modules/ui.py
2023-08-01 07:15:16 +03:00
AUTOMATIC1111
b98fa1c397
Split history: mv modules/ui.py temp
2023-08-01 07:15:15 +03:00
AUTOMATIC1111
77761e7bad
linter
2023-07-30 14:10:33 +03:00
AUTOMATIC1111
3bca90b249
hires fix checkpoint selection
2023-07-30 13:48:27 +03:00
AUTOMATIC1111
5ef7590324
always show extra networks tabs in the UI
2023-07-16 11:38:59 +03:00
AUTOMATIC1111
127635409a
add padding and identification to generation log section (Failed to find Loras, Used embeddings, etc...)
2023-07-15 08:07:25 +03:00
AUTOMATIC1111
1d71c36de2
third time's the charm
2023-07-08 15:21:29 +03:00
AUTOMATIC1111
9043b91649
additional changes for merge conflict for #11337
2023-07-08 15:14:24 +03:00
AUTOMATIC1111
ec9bbda3da
Merge branch 'dev' into img2img-batch-png-info
2023-07-08 15:10:10 +03:00
AUTOMATIC1111
46c2b1e202
Merge pull request #11660 from neilmahaseth/patch-1
...
Fix UnicodeEncodeError when writing to file CLIP Interrogator Batch Mode
2023-07-08 13:10:03 +03:00
Neil Mahseth
c258dd34a8
Fix UnicodeEncodeError when writing to file CLIP Interrogator Batch Mode
...
The code snippet print(interrogation_function(img), file=open(os.path.join(ii_output_dir, f"{left}.txt"), 'a')) raises a UnicodeEncodeError with the message "'charmap' codec can't encode character '\u016b' in position 129". This error occurs because the default encoding used by the open() function cannot handle certain Unicode characters.
To fix this issue, the encoding parameter needs to be explicitly specified when opening the file. By using an appropriate encoding, such as 'utf-8', we can ensure that Unicode characters are properly encoded and written to the file.
The updated code should be modified as follows:
python
Copy code
print(interrogation_function(img), file=open(os.path.join(ii_output_dir, f"{left}.txt"), 'a', encoding='utf-8'))
By making this change, the code will no longer raise the UnicodeEncodeError and will correctly handle Unicode characters during the file write operation.
2023-07-06 22:02:47 +05:30
AUTOMATIC1111
fa31dd80f5
Merge pull request #11315 from guming3d/master
...
fix: adding elem_id for img2img resize to and resize by tabs
2023-06-27 08:53:10 +03:00
Ferdinand Weynschenk
c4c63dd5e4
resolve linter
2023-06-20 14:03:42 +02:00
Ferdinand Weynschenk
928bd42da4
PNG info support at img2img batch
2023-06-20 13:33:36 +02:00
George Gu
d2ccdcdc97
fix: adding elem_id for img2img resize to and resize by tabs
2023-06-19 10:16:18 +08:00
w-e-w
96e446218c
link footer API to Wiki when API is not active
2023-06-06 18:58:44 +09:00
AUTOMATIC1111
7a7a201d81
Merge pull request #10956 from akx/len
...
Simplify a bunch of `len(x) > 0`/`len(x) == 0` style expressions
2023-06-05 11:06:37 +03:00
AUTOMATIC1111
efc4c79b5e
Merge pull request #10980 from AUTOMATIC1111/sysinfo
...
Added sysinfo tab to settings
2023-06-04 11:16:32 +03:00
AUTOMATIC
f98f4f73aa
infer styles from prompts, and an option to control the behavior
2023-06-04 10:56:48 +03:00
AUTOMATIC
7393c1f99c
Added sysinfo tab to settings
2023-06-03 13:55:35 +03:00
Aarni Koskela
51864790fd
Simplify a bunch of len(x) > 0
/len(x) == 0
style expressions
2023-06-02 15:07:10 +03:00
catboxanon
7dca8e7698
Support dynamic sort of extra networks
2023-06-02 04:08:45 +00:00
AUTOMATIC
b3390a9840
Merge branch 'dev' into startup-profile
2023-06-01 08:42:50 +03:00
AUTOMATIC
8a561d94e6
use ui_reorder_list rather than ui_reorder for UI reorder option to make the program not break when reverting to old version
2023-05-31 23:05:44 +03:00
AUTOMATIC1111
fae8bdfa48
Merge pull request #10785 from nyqui/fix-hires.fix
...
fix "hires. fix" prompt sharing same labels with txt2img_prompt
2023-05-31 22:54:24 +03:00