aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2022-09-17the last PR broke saving EXiF completely for me. I don't know if it was ↵AUTOMATIC
broken already or some condition changed, but it seems like the person who originally added EXIF said, saving it with PIL may not work. I switched to using piexif to add data after the file written.
2022-09-17image.save parameter fixJJ
* image.save takes exif as a parameter * piexif takes the bytes as a parameter, not the exif_bytes function itself * reduce calls to create_exif_bytes
2022-09-17image info tabJJ
* handles exceptions if jpeg jfif data not present * removes further non-comment related exif data.
2022-09-16an option to do exactly the amount of specified steps in img2imgAUTOMATIC
2022-09-16fix extras tab showing original images instead of upscalesAUTOMATIC
2022-09-16remove the warning at startup related to previous PR with batch processingAUTOMATIC
2022-09-16add a bit of a comment about what's being done with tensor noiseAUTOMATIC
2022-09-16Merge branch 'batch-seed-attempt'AUTOMATIC
2022-09-16prevent replacing torch_randn globally (instead replacing ↵AUTOMATIC
k_diffusion.sampling.torch) and add a setting to disable this all
2022-09-16 Prompt editing only applies to images in first batch of desired batch size ↵AUTOMATIC
when batch count > 1 #535
2022-09-16fix loopback color correction to store color_correction info for initial ↵AUTOMATIC
image and use that instead of extracting from previous image in a loop #481 #541
2022-09-16Add batch processing to Extras tabArrowM
2022-09-16Replace invalid filename chars with an underscoreTwizzes
... instead of removing them altogether. This makes the prompt editing filenames [old:new:step] easier to read
2022-09-15Merge remote-tracking branch 'origin/master'AUTOMATIC
2022-09-15SD upscale with Batch count>1 results broken images #512AUTOMATIC
2022-09-15Update scripts.pyOWKenobi
fixes bug #464, which happens when controls is None, which leads to args_to being None.
2022-09-15oh hey i broke batches with thisAUTOMATIC
2022-09-15Merge branch 'prompt_editing'AUTOMATIC
2022-09-15fix for Error Interrogating when user has garbage in text files #479AUTOMATIC
2022-09-15quantization off by defaultAUTOMATIC
2022-09-15Respect quantization settingC43H66N12O12S2
2022-09-15Add setting for quantizationC43H66N12O12S2
2022-09-15Construct CompVisDenoiser with quantizationC43H66N12O12S2
2022-09-15Merge remote-tracking branch 'origin/master'AUTOMATIC
2022-09-15fix for failing to save 4chan downscale for large iamgesAUTOMATIC
2022-09-15exif fix for webpJJ
* fix for odd error only in webp files whereby piexif.insert inserts the bytes correctly, but image.save inserts extra "Exif" in the image metadata which results in an error on reading
2022-09-15fix typoC43H66N12O12S2
2022-09-15pass dtype to torch.zeros as wellC43H66N12O12S2
2022-09-15prompt editingAUTOMATIC
2022-09-15prevent repeating messages about too many tokensAUTOMATIC
2022-09-15Improved directory sanitization when --hide_ui_dir_configEyeDeck
Fixes an issue where it's still possible to write to arbitrary directories through careful use of \.. or /.. in directory patterns ...and fix the regex to work better reeeegex
2022-09-15Corrected typos in shared.py and READMESteve Eberhardt
2022-09-14Fixed typo in text attention settingNebulousDev
2022-09-14added a second style fieldAUTOMATIC
added the ability to use {prompt} in styles added a button to apply style to textbox rearranged top row for UI
2022-09-14Update images.pyMichoko
Better code
2022-09-14Update images.pyMichoko
Handles grids names. Code more robust and doesn't fail if mixed with other files.
2022-09-14Update images.pyMichoko
Better computing of images indexes in filenames
2022-09-14Removed stray references to shared.device_codeformer.Elias Oenal
2022-09-14fix for codeformer switching torch devices on metal systems.Elias Oenal
2022-09-14updates for exif comments #446AUTOMATIC
2022-09-14format exif stringJJ
* UserComment needs an ID code at the start of the tag area. This is provided by piexif.helper.UserComment, otherwise an "Warning Invalid EXIF text encoding for UserComment" is thrown upon reading the exif data
2022-09-14loopback moved to scripts, added support for multiple batches, changed to ↵AUTOMATIC
honor save grids and how grids in web setting
2022-09-14do not die on failing to load script #426AUTOMATIC
2022-09-14option name updates for #432AUTOMATIC
2022-09-14Update ui.pyjtkelm2
2022-09-14Update ui.pyjtkelm2
2022-09-14Added selected image savingjtkelm2
2022-09-14prevent making grid if there is no need for it #428AUTOMATIC
2022-09-14prevent extras from saving in dirJustAnOkapi
Extras have none of the vars used in dir names, so they cant be saved into dirs. +grid code cleanup
2022-09-14add webp to file formats with exif savedJJ