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
|
### v1.5.0 - 2023 Nov.08
|
||||||
- Rewrote **Callback** logic *(`internal`)*
|
- 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,
|
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.
|
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)
|
> [Sample Images](#sample-images)
|
||||||
|
|
||||||
## How to Use
|
## 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 Infotext Support *(by. [catboxanon](https://github.com/catboxanon))*
|
||||||
- [X] ADD **HDR** Script
|
- [X] ADD **HDR** Script
|
||||||
- [ ] Add Gradient features
|
- [ ] 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"><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>
|
<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
|
## Known Issues
|
||||||
- Does not work with `DDIM`, `UniPC` samplers
|
- Does not work with `DDIM`, `UniPC` samplers
|
||||||
- Has little effect when used with certain **LoRA**s
|
- Has little effect when used with certain **LoRA**s
|
||||||
|
- Colors are incorrect when using SDXL checkpoints
|
||||||
|
|
||||||
## HDR
|
## HDR
|
||||||
<p align="right"><i><b>BETA</b></i></p>
|
<p align="right"><i><b>BETA</b></i></p>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ from modules import script_callbacks
|
||||||
import modules.scripts as scripts
|
import modules.scripts as scripts
|
||||||
import json
|
import json
|
||||||
|
|
||||||
VERSION = 'v1.5.0'
|
VERSION = 'v1.5.1'
|
||||||
|
|
||||||
def clean_outdated(EXT_NAME:str):
|
def clean_outdated(EXT_NAME:str):
|
||||||
with open(scripts.basedir() + '/' + 'ui-config.json', 'r', encoding='utf8') as json_file:
|
with open(scripts.basedir() + '/' + 'ui-config.json', 'r', encoding='utf8') as json_file:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue