Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
v2.3.2 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevysha authored Jun 25, 2023
1 parent 1604ab6 commit 55b4461
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 36 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion PATCHNOTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
48 changes: 24 additions & 24 deletions client/assets/index.js

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions cozy-nest-client/settings/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 0 additions & 2 deletions scripts/nevysha_cozy_nest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version_data.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2.3.1"
"version": "2.3.2"
}

0 comments on commit 55b4461

Please sign in to comment.