add readme
parent
ea23e0658d
commit
da328b7198
|
|
@ -0,0 +1,2 @@
|
|||
__pycache__
|
||||
styles.json
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
### v1.5.1 - 2023 Dec.03
|
||||
- Bug Fix by. **catboxanon**
|
||||
|
||||
### v1.5.0 - 2023 Nov.08
|
||||
- Rewrote **Callback** logic *(`internal`)*
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
This is an Extension for the [Automatic1111 Webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui), which performs a kind of **Offset Noise**[*](#offset-noise-tldr) natively,
|
||||
allowing you to adjust the brightness, contrast, and color of the generations.
|
||||
|
||||
**Important:** The color currently only works for **SD 1.5** Checkpoints
|
||||
|
||||
> [Sample Images](#sample-images)
|
||||
|
||||
## How to Use
|
||||
|
|
@ -169,6 +171,7 @@ Thus, I added a scaling option to modify the offset amount.
|
|||
- [X] Add Infotext Support *(by. [catboxanon](https://github.com/catboxanon))*
|
||||
- [X] ADD **HDR** Script
|
||||
- [ ] Add Gradient features
|
||||
- [ ] Add SDXL Support
|
||||
|
||||
<p align="center"><code>X/Y/Z Plot Support</code><br><i>(Outdated Contrast Value)</i></p>
|
||||
<p align="center"><img src="samples/XYZ.jpg" width=768></p>
|
||||
|
|
@ -188,6 +191,7 @@ The `args` are sent in the following order:
|
|||
## Known Issues
|
||||
- Does not work with `DDIM`, `UniPC` samplers
|
||||
- Has little effect when used with certain **LoRA**s
|
||||
- Colors are incorrect when using SDXL checkpoints
|
||||
|
||||
## HDR
|
||||
<p align="right"><i><b>BETA</b></i></p>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ from modules import script_callbacks
|
|||
import modules.scripts as scripts
|
||||
import json
|
||||
|
||||
VERSION = 'v1.5.0'
|
||||
VERSION = 'v1.5.1'
|
||||
|
||||
def clean_outdated(EXT_NAME:str):
|
||||
with open(scripts.basedir() + '/' + 'ui-config.json', 'r', encoding='utf8') as json_file:
|
||||
|
|
|
|||
Loading…
Reference in New Issue