Spaces:
Paused
Paused
lllyasviel
commited on
Commit
·
764fa3e
1
Parent(s):
f00f46e
i (#116)
Browse files- fooocus_version.py +1 -1
- modules/html.py +1 -0
- update_log.md +4 -0
- webui.py +1 -1
fooocus_version.py
CHANGED
@@ -1 +1 @@
|
|
1 |
-
version = '1.0.
|
|
|
1 |
+
version = '1.0.31'
|
modules/html.py
CHANGED
@@ -80,6 +80,7 @@ progress::after {
|
|
80 |
border: none !important;
|
81 |
background: none !important;
|
82 |
font-size: none !important;
|
|
|
83 |
}
|
84 |
|
85 |
'''
|
|
|
80 |
border: none !important;
|
81 |
background: none !important;
|
82 |
font-size: none !important;
|
83 |
+
box-shadow: none !important;
|
84 |
}
|
85 |
|
86 |
'''
|
update_log.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
### 1.0.29
|
2 |
|
3 |
* Added "Advanced->Advanced->Advanced" block for future development.
|
|
|
1 |
+
### 1.0.31
|
2 |
+
|
3 |
+
* Fix typo and UI.
|
4 |
+
|
5 |
### 1.0.29
|
6 |
|
7 |
* Added "Advanced->Advanced->Advanced" block for future development.
|
webui.py
CHANGED
@@ -78,7 +78,7 @@ with shared.gradio_root:
|
|
78 |
with gr.Row():
|
79 |
model_refresh = gr.Button(label='Refresh', value='\U0001f504 Refresh All Files', variant='secondary', elem_classes='refresh_button')
|
80 |
with gr.Accordion(label='Advanced', open=False):
|
81 |
-
sharpness = gr.Slider(label='
|
82 |
|
83 |
def model_refresh_clicked():
|
84 |
modules.path.update_all_model_names()
|
|
|
78 |
with gr.Row():
|
79 |
model_refresh = gr.Button(label='Refresh', value='\U0001f504 Refresh All Files', variant='secondary', elem_classes='refresh_button')
|
80 |
with gr.Accordion(label='Advanced', open=False):
|
81 |
+
sharpness = gr.Slider(label='Sampling Sharpness', minimum=0.0, maximum=20.0, step=0.01, value=2.0)
|
82 |
|
83 |
def model_refresh_clicked():
|
84 |
modules.path.update_all_model_names()
|