i (#116)
This commit is contained in:
parent
5e5a2d428f
commit
bbc58d76cb
|
|
@ -1 +1 @@
|
||||||
version = '1.0.30'
|
version = '1.0.31'
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,7 @@ progress::after {
|
||||||
border: none !important;
|
border: none !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
font-size: none !important;
|
font-size: none !important;
|
||||||
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
### 1.0.31
|
||||||
|
|
||||||
|
* Fix typo and UI.
|
||||||
|
|
||||||
### 1.0.29
|
### 1.0.29
|
||||||
|
|
||||||
* Added "Advanced->Advanced->Advanced" block for future development.
|
* Added "Advanced->Advanced->Advanced" block for future development.
|
||||||
|
|
|
||||||
2
webui.py
2
webui.py
|
|
@ -78,7 +78,7 @@ with shared.gradio_root:
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
model_refresh = gr.Button(label='Refresh', value='\U0001f504 Refresh All Files', variant='secondary', elem_classes='refresh_button')
|
model_refresh = gr.Button(label='Refresh', value='\U0001f504 Refresh All Files', variant='secondary', elem_classes='refresh_button')
|
||||||
with gr.Accordion(label='Advanced', open=False):
|
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():
|
def model_refresh_clicked():
|
||||||
modules.path.update_all_model_names()
|
modules.path.update_all_model_names()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue