From bbc58d76cb27a0dae4932ee1eb29176b2a9e39aa Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Tue, 15 Aug 2023 09:27:27 -0700 Subject: [PATCH] i (#116) --- fooocus_version.py | 2 +- modules/html.py | 1 + update_log.md | 4 ++++ webui.py | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/fooocus_version.py b/fooocus_version.py index 0ebb4ef9..6cea6edd 100644 --- a/fooocus_version.py +++ b/fooocus_version.py @@ -1 +1 @@ -version = '1.0.30' +version = '1.0.31' diff --git a/modules/html.py b/modules/html.py index 9068444f..0794df21 100644 --- a/modules/html.py +++ b/modules/html.py @@ -80,6 +80,7 @@ progress::after { border: none !important; background: none !important; font-size: none !important; + box-shadow: none !important; } ''' diff --git a/update_log.md b/update_log.md index aad646cb..27932016 100644 --- a/update_log.md +++ b/update_log.md @@ -1,3 +1,7 @@ +### 1.0.31 + +* Fix typo and UI. + ### 1.0.29 * Added "Advanced->Advanced->Advanced" block for future development. diff --git a/webui.py b/webui.py index 2c200538..55ae176b 100644 --- a/webui.py +++ b/webui.py @@ -78,7 +78,7 @@ with shared.gradio_root: with gr.Row(): model_refresh = gr.Button(label='Refresh', value='\U0001f504 Refresh All Files', variant='secondary', elem_classes='refresh_button') with gr.Accordion(label='Advanced', open=False): - sharpness = gr.Slider(label='Image Sharpness', minimum=0.0, maximum=20.0, step=0.01, value=2.0) + sharpness = gr.Slider(label='Sampling Sharpness', minimum=0.0, maximum=20.0, step=0.01, value=2.0) def model_refresh_clicked(): modules.path.update_all_model_names()