From 26a370eee85c81b14bbdae7ba5c85086e8bd0295 Mon Sep 17 00:00:00 2001 From: Victor Seiji Hariki Date: Sun, 29 Jan 2023 02:59:30 -0300 Subject: [PATCH 1/3] add styles to logs Signed-off-by: Victor Seiji Hariki --- js/ui/tool/dream.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/tool/dream.js b/js/ui/tool/dream.js index 486dfc4..154193c 100644 --- a/js/ui/tool/dream.js +++ b/js/ui/tool/dream.js @@ -524,7 +524,8 @@ const _generate = async (endpoint, request, bb, options = {}) => { addline(` + Sampler = ${request.sampler_index}`); addline(` + Model = ${modelAutoComplete.value}`); addline(` + +Prompt = ${request.prompt}`); - addline(` + -Prompt = ${request.negative_prompt}`, false); + addline(` + -Prompt = ${request.negative_prompt}`); + addline(` + Styles = ${request.styles.join(", ")}`, false); commands.runCommand( "drawImage", From 3984ea11ab28d61c7b0b56e686b87895950611a9 Mon Sep 17 00:00:00 2001 From: seijihariki Date: Sun, 29 Jan 2023 05:59:57 +0000 Subject: [PATCH 2/3] Fixed resource hashes --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0423be7..fe42562 100644 --- a/index.html +++ b/index.html @@ -433,7 +433,7 @@ src="js/ui/tool/generic.js?v=3e678e0" type="text/javascript"> - + From 602de506262e30255fba7c0ccf240922fc54bbeb Mon Sep 17 00:00:00 2001 From: tim h Date: Sun, 29 Jan 2023 00:28:33 -0600 Subject: [PATCH 3/3] wtf when did this stop defaulting to 1 -1 breaks the slider --- pages/configuration.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pages/configuration.html b/pages/configuration.html index fe9c333..647f3d2 100644 --- a/pages/configuration.html +++ b/pages/configuration.html @@ -124,8 +124,7 @@ localStorage.getItem("openoutpaint/settings.canvas-height") || 2048; maxSteps.value = localStorage.getItem("openoutpaint/settings.max-steps") || 70; - minCfg.value = - localStorage.getItem("openoutpaint/settings.min-cfg") || -1; + minCfg.value = localStorage.getItem("openoutpaint/settings.min-cfg") || 1; maxCfg.value = localStorage.getItem("openoutpaint/settings.max-cfg") || 30; let _enable_dishonesty =