mirror of https://github.com/Nevysha/Cozy-Nest.git
parent
50d042c5a8
commit
e2612e54b4
|
|
@ -1,7 +1,10 @@
|
|||
## Compatibility
|
||||
|
||||
- Automatic1111's webui 1.4.0 release.
|
||||
- SD Next (Vlad's fork) Version: 3bcca6f9 06/07/2023
|
||||
- Automatic1111's webui 1.6.0 release WIP.
|
||||
- Not compatible with SD Next.
|
||||
|
||||
## Minor changes & fixes in 2.4.4
|
||||
- [x] wip fixes for Automatic1111's webui 1.6.0 release
|
||||
|
||||
## Minor changes & fixes in 2.4.3
|
||||
- [x] Fix for SD Next compatibility Version: 3bcca6f9 3bcca6f9 06/07/2023.
|
||||
|
|
|
|||
|
|
@ -758,6 +758,7 @@ button.secondary, button.primary {
|
|||
|
||||
.nevysha.generate-button, .nevysha.skip-interrupt-wrapper {
|
||||
/*margin: 0 0 10px 0;*/
|
||||
width: calc(100% - 10px);
|
||||
}
|
||||
|
||||
.nevysha.skip-interrupt-wrapper {
|
||||
|
|
@ -913,21 +914,24 @@ button.secondary, button.primary {
|
|||
width: calc(100% - 33px) !important;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.vertical-line-wrapper {
|
||||
width: 10px !important;
|
||||
max-width: 10px !important;
|
||||
min-width: 10px !important;
|
||||
height: calc(100% - 30px);
|
||||
/*height: calc(100% - 30px);*/
|
||||
cursor: ew-resize;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 15px -10px 0 -10px;
|
||||
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.slide-right-browser-panel > .vertical-line-wrapper {
|
||||
position: absolute;
|
||||
/*position: absolute;*/
|
||||
}
|
||||
|
||||
.slide-right-browser-panel > .slide-right-browser-panel-container {
|
||||
|
|
@ -1834,8 +1838,8 @@ body.nevysha-light .nevysha-button:hover {
|
|||
|
||||
[id$="_gallery_clear_button"] {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 10px;
|
||||
top: 7px;
|
||||
right: 55px;
|
||||
z-index: 30;
|
||||
background-color: var(--block-background-fill);
|
||||
}
|
||||
|
|
@ -1991,3 +1995,7 @@ button#interrogate {
|
|||
background: var(--ae-primary-color) !important;
|
||||
color: var(--nevysha-color-from-luminance) !important;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -32,6 +32,12 @@ class CozyLoggerClass {
|
|||
console.log('CozyNest:',...args);
|
||||
}
|
||||
|
||||
warn(...args) {
|
||||
if (this.enabled) {
|
||||
console.warn('CozyNest:', ...args);
|
||||
}
|
||||
}
|
||||
|
||||
error(...args) {
|
||||
console.error('CozyNest:',...args);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -99,10 +99,16 @@ export const hasCozyNestNo = () => {
|
|||
}
|
||||
|
||||
export function hideNativeUiExtraNetworkElement(prefix) {
|
||||
const triggerButton = document.querySelector(`button#${DOM_IDS.get('extra_networks_btn')(prefix)}`)
|
||||
triggerButton.style.display = 'none'
|
||||
const tabs = document.querySelector(`div#${prefix}_extra_networks`)
|
||||
tabs.style.display = 'none';
|
||||
const extraNetworks = document.querySelector(`#${DOM_IDS.get('extra_networks')(prefix)} > .tab-nav`)
|
||||
|
||||
if (!extraNetworks) {
|
||||
CozyLogger.warn("hideNativeUiExtraNetworkElement: extraNetworks not found")
|
||||
return;
|
||||
}
|
||||
|
||||
extraNetworks.style.display = 'none'
|
||||
// const tabs = document.querySelector(`div#${prefix}_extra_networks`)
|
||||
// tabs.style.display = 'none';
|
||||
}
|
||||
|
||||
export function checkClientEnv() {
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ const a1111 = {
|
|||
clear_prompt(prefix) {
|
||||
return `${prefix}_clear_prompt`
|
||||
},
|
||||
extra_networks_btn(prefix) {
|
||||
return `${prefix}_extra_networks`
|
||||
extra_networks(prefix) {
|
||||
return `${prefix}_extra_tabs`
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -13,8 +13,8 @@ const sdNext = {
|
|||
clear_prompt(prefix) {
|
||||
return `${prefix}_clear_prompt_btn`
|
||||
},
|
||||
extra_networks_btn(prefix) {
|
||||
return `${prefix}_extra_networks_btn`
|
||||
extra_networks(prefix) {
|
||||
return `${prefix}_extra_tabs`
|
||||
}
|
||||
}
|
||||
// txt2img_clear_prompt_btn
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@ const addDraggable = ({prefix}) => {
|
|||
|
||||
const settings = document.getElementById(`${prefix}_settings`);
|
||||
|
||||
|
||||
|
||||
//change min-width to min(420px, 100%)
|
||||
settings.style.minWidth = `min(${SETTINGS_MIN_WIDTH}px, 100%)`
|
||||
|
||||
|
|
@ -46,6 +48,9 @@ const addDraggable = ({prefix}) => {
|
|||
settings.insertAdjacentElement('afterend', lineWrapper);
|
||||
|
||||
const container = settings.parentElement;
|
||||
//flex for parent
|
||||
container.style.display = "flex";
|
||||
container.style.flexDirection = "row";
|
||||
container.classList.add('nevysha', 'resizable-children-container');
|
||||
const results = document.getElementById(`${prefix}_results`);
|
||||
|
||||
|
|
@ -104,6 +109,8 @@ const addDraggable = ({prefix}) => {
|
|||
document.addEventListener('mouseup', () => {
|
||||
isDragging = false;
|
||||
});
|
||||
|
||||
CozyLogger.debug("addDraggable: done");
|
||||
}
|
||||
|
||||
const tweakButtonsIcons = () => {
|
||||
|
|
@ -629,7 +636,10 @@ function buildRightSlidePanelFor(label, buttonLabel, rightPanBtnWrapper, tab, pr
|
|||
const width = window.innerWidth;
|
||||
cozyImgBrowserPanelWrapper.style.width = `${Math.round(width / 2)}px`;
|
||||
}
|
||||
cozyImgBrowserPanelWrapper.appendChild(lineWrapper)
|
||||
|
||||
// cozyImgBrowserPanelWrapper.appendChild(lineWrapper)
|
||||
// add lineWrapper at the begining of the div
|
||||
cozyImgBrowserPanelWrapper.insertBefore(lineWrapper, cozyImgBrowserPanelWrapper.firstChild);
|
||||
|
||||
//add a close button inside the line
|
||||
const closeCozyImgBrowser = document.createElement('button');
|
||||
|
|
@ -1046,10 +1056,10 @@ const onLoad = (done, error) => {
|
|||
onUiTabChange(() => {
|
||||
CozyLogger.debug(`onUiTabChange newTab:${get_uiCurrentTabContent().id}, lastTab:${lastTab}`);
|
||||
|
||||
if (lastTab === "tab_txt2img") {
|
||||
if (lastTab === "tab_txt2img" && rightPanelsHandler['cozy-txt2img-extra-network']) {
|
||||
rightPanelsHandler['cozy-txt2img-extra-network'].close();
|
||||
}
|
||||
else if (lastTab === "tab_img2img") {
|
||||
else if (lastTab === "tab_img2img" && rightPanelsHandler['cozy-img2img-extra-network']) {
|
||||
rightPanelsHandler['cozy-img2img-extra-network'].close();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -758,6 +758,7 @@ button.secondary, button.primary {
|
|||
|
||||
.nevysha.generate-button, .nevysha.skip-interrupt-wrapper {
|
||||
/*margin: 0 0 10px 0;*/
|
||||
width: calc(100% - 10px);
|
||||
}
|
||||
|
||||
.nevysha.skip-interrupt-wrapper {
|
||||
|
|
@ -913,21 +914,24 @@ button.secondary, button.primary {
|
|||
width: calc(100% - 33px) !important;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.vertical-line-wrapper {
|
||||
width: 10px !important;
|
||||
max-width: 10px !important;
|
||||
min-width: 10px !important;
|
||||
height: calc(100% - 30px);
|
||||
/*height: calc(100% - 30px);*/
|
||||
cursor: ew-resize;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 15px -10px 0 -10px;
|
||||
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.slide-right-browser-panel > .vertical-line-wrapper {
|
||||
position: absolute;
|
||||
/*position: absolute;*/
|
||||
}
|
||||
|
||||
.slide-right-browser-panel > .slide-right-browser-panel-container {
|
||||
|
|
@ -1834,8 +1838,8 @@ body.nevysha-light .nevysha-button:hover {
|
|||
|
||||
[id$="_gallery_clear_button"] {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 10px;
|
||||
top: 7px;
|
||||
right: 55px;
|
||||
z-index: 30;
|
||||
background-color: var(--block-background-fill);
|
||||
}
|
||||
|
|
@ -1991,3 +1995,7 @@ button#interrogate {
|
|||
background: var(--ae-primary-color) !important;
|
||||
color: var(--nevysha-color-from-luminance) !important;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"version": "2.4.3"
|
||||
"version": "2.4.4"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue