pull/178/head
Nevysha 2023-06-25 16:42:25 +02:00 committed by GitHub
parent 942987ef06
commit 4e398775bb
7 changed files with 31 additions and 36 deletions

View File

@ -8,7 +8,6 @@ body:
attributes:
value: |
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.**
- type: markdown
attributes:
@ -39,7 +38,7 @@ body:
description: Which webui are you using?
options:
- Automatic1111's webui
- Vlad's fork webui (SD.Next) UNSUPPORTED!!!
- SD.Next (Vlad's fork webui)
validations:
required: true
- type: dropdown

View File

@ -2,11 +2,13 @@
- 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
- [x] May work in SD.Next. Cozy Prompt is disabled in SD.Next.
## 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] Add a "clear" button to extras gallery
- [x] press escape key to close right panels

View File

@ -11,8 +11,7 @@ Cozy Nest is a UI extension for Automatic's sd-webui.
## Compatibility
- From Automatic1111's webui 1.3.2 release.
![](https://placehold.co/15x15/f03c15/f03c15.png) **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.**
- SD Next (Vlad's fork) Version: 4867dafa Fri Jun 23.
## Features:
- [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

View File

@ -393,10 +393,8 @@ export function App() {
</TabPanel>
<TabPanel css={nevyshaScrollbar}>
{config.webui === WEBUI_SDNEXT && <span style={{color:'#fd4141', fontWeight:'bold'}}>Cozy Prompt is not available in SD.Next</span>}
<Checkbox
isChecked={config.enable_cozy_prompt}
isDisabled={config.webui === WEBUI_SDNEXT}
onChange={(e) => setConfig({...config, enable_cozy_prompt: e.target.checked})}
>Enable Cozy Prompt (Reload UI required)</Checkbox>
<Column>
@ -435,9 +433,8 @@ export function App() {
>Enable extra network tweaks</Checkbox>
<Checkbox
isChecked={config.enable_cozy_prompt}
isDisabled={config.webui === WEBUI_SDNEXT}
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>
</TabPanel>
</TabPanels>

View File

@ -295,13 +295,11 @@ def on_ui_tabs():
if version['app'] == 'sd.next':
config['webui'] = 'sd.next'
config['fetch_output_folder_from_a1111_settings'] = False
config['enable_cozy_prompt'] = False
else:
config['webui'] = 'auto1111'
save_settings(config)
if config['webui'] == 'sd.next':
config['enable_cozy_prompt'] = 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

View File

@ -1,3 +1,3 @@
{
"version": "2.3.1"
"version": "2.3.2"
}