mirror of https://github.com/Nevysha/Cozy-Nest.git
v2.3.2 (#160)
parent
942987ef06
commit
4e398775bb
|
|
@ -8,7 +8,6 @@ body:
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
Thanks for taking the time to fill out this bug report!
|
Thanks for taking the time to fill out this bug report!
|
||||||
**PLEASE NOT THAT COZY NEST DOES NOT SUPPORT SD.NEXT WEBUI anymore (at least atm)**
|
|
||||||
**Please include as much information as possible, including screenshots, logs, and steps to reproduce the issue.**
|
**Please include as much information as possible, including screenshots, logs, and steps to reproduce the issue.**
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
|
@ -39,7 +38,7 @@ body:
|
||||||
description: Which webui are you using?
|
description: Which webui are you using?
|
||||||
options:
|
options:
|
||||||
- Automatic1111's webui
|
- Automatic1111's webui
|
||||||
- Vlad's fork webui (SD.Next) UNSUPPORTED!!!
|
- SD.Next (Vlad's fork webui)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,13 @@
|
||||||
|
|
||||||
- Automatic1111's webui 1.3.2 release.
|
- Automatic1111's webui 1.3.2 release.
|
||||||
|
|
||||||
|
## Minor changes & fixes in 2.3.2
|
||||||
|
- [x] Fix Cozy Prompt for SD.Next compatibility
|
||||||
|
|
||||||
## Minor changes & fixes in 2.3.1
|
## Minor changes & fixes in 2.3.1
|
||||||
- [x] May work in SD.Next. Cozy Prompt is disabled in SD.Next.
|
- [x] May work in SD.Next. Cozy Prompt is disabled in SD.Next.
|
||||||
|
|
||||||
## New features in 2.3.0
|
## New features in 2.3.0
|
||||||
- [x] DROPPING SUPPORT FOR SD.NEXT. Cozy Nest is now only compatible with Automatic1111's webui. Maintaining compatibility with SD.Next was too much work for me. I'm sorry for the SD.Next users.
|
|
||||||
- [x] Civitai Helper and its 4 button on thumbnails should work properly.
|
- [x] Civitai Helper and its 4 button on thumbnails should work properly.
|
||||||
- [x] Add a "clear" button to extras gallery
|
- [x] Add a "clear" button to extras gallery
|
||||||
- [x] press escape key to close right panels
|
- [x] press escape key to close right panels
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,7 @@ Cozy Nest is a UI extension for Automatic's sd-webui.
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
- From Automatic1111's webui 1.3.2 release.
|
- From Automatic1111's webui 1.3.2 release.
|
||||||
|
- SD Next (Vlad's fork) Version: 4867dafa Fri Jun 23.
|
||||||
 **DROPPING SUPPORT FOR SD.NEXT. Cozy Nest is now only compatible with Automatic1111's webui. Maintaining compatibility with SD.Next was too much work for me. I'm sorry for the SD.Next users.**
|
|
||||||
|
|
||||||
## Features:
|
## Features:
|
||||||
- [x] Fully integrated Image Browser. Lots of bugs and missing features. Please be kind with Github issues.
|
- [x] Fully integrated Image Browser. Lots of bugs and missing features. Please be kind with Github issues.
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -393,10 +393,8 @@ export function App() {
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
|
|
||||||
<TabPanel css={nevyshaScrollbar}>
|
<TabPanel css={nevyshaScrollbar}>
|
||||||
{config.webui === WEBUI_SDNEXT && <span style={{color:'#fd4141', fontWeight:'bold'}}>Cozy Prompt is not available in SD.Next</span>}
|
|
||||||
<Checkbox
|
<Checkbox
|
||||||
isChecked={config.enable_cozy_prompt}
|
isChecked={config.enable_cozy_prompt}
|
||||||
isDisabled={config.webui === WEBUI_SDNEXT}
|
|
||||||
onChange={(e) => setConfig({...config, enable_cozy_prompt: e.target.checked})}
|
onChange={(e) => setConfig({...config, enable_cozy_prompt: e.target.checked})}
|
||||||
>Enable Cozy Prompt (Reload UI required)</Checkbox>
|
>Enable Cozy Prompt (Reload UI required)</Checkbox>
|
||||||
<Column>
|
<Column>
|
||||||
|
|
@ -435,9 +433,8 @@ export function App() {
|
||||||
>Enable extra network tweaks</Checkbox>
|
>Enable extra network tweaks</Checkbox>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
isChecked={config.enable_cozy_prompt}
|
isChecked={config.enable_cozy_prompt}
|
||||||
isDisabled={config.webui === WEBUI_SDNEXT}
|
|
||||||
onChange={(e) => setConfig({...config, enable_cozy_prompt: e.target.checked})}
|
onChange={(e) => setConfig({...config, enable_cozy_prompt: e.target.checked})}
|
||||||
>Enable Cozy Prompt{config.webui === WEBUI_SDNEXT ? ' (not available in SD.Next.)' : ''}</Checkbox>
|
>Enable Cozy Prompt</Checkbox>
|
||||||
</Column>
|
</Column>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
</TabPanels>
|
</TabPanels>
|
||||||
|
|
|
||||||
|
|
@ -295,13 +295,11 @@ def on_ui_tabs():
|
||||||
if version['app'] == 'sd.next':
|
if version['app'] == 'sd.next':
|
||||||
config['webui'] = 'sd.next'
|
config['webui'] = 'sd.next'
|
||||||
config['fetch_output_folder_from_a1111_settings'] = False
|
config['fetch_output_folder_from_a1111_settings'] = False
|
||||||
config['enable_cozy_prompt'] = False
|
|
||||||
else:
|
else:
|
||||||
config['webui'] = 'auto1111'
|
config['webui'] = 'auto1111'
|
||||||
save_settings(config)
|
save_settings(config)
|
||||||
|
|
||||||
if config['webui'] == 'sd.next':
|
if config['webui'] == 'sd.next':
|
||||||
config['enable_cozy_prompt'] = False
|
|
||||||
config['fetch_output_folder_from_a1111_settings'] = False
|
config['fetch_output_folder_from_a1111_settings'] = False
|
||||||
|
|
||||||
# check if cnib_output_folder is empty and/or need to be fetched from a1111 settings
|
# check if cnib_output_folder is empty and/or need to be fetched from a1111 settings
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
"version": "2.3.1"
|
"version": "2.3.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue