Skip to content

Commit 13d1bb4

Browse files
committed
0.1.2
1 parent 322a965 commit 13d1bb4

File tree

8 files changed

+858
-36
lines changed

8 files changed

+858
-36
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,22 +61,20 @@ But remains a great solution for users with minimal technical knowledge or exper
6161

6262
### Tested on Windows 10+ and Nvidia GPU-based cards
6363

64-
### Update [0.1.1]
64+
### Update [0.1.2]
6565

6666
Added
6767

68-
- Your Creation some social fun.
69-
- A Kandinsky web user interface for https://github.com/ai-forever/Kandinsky-2, requires more than a 8GB VRAM GPU.
70-
71-
Changed
72-
73-
- Python detection improved.
74-
- Minor bug fixes.
75-
68+
- Quick launch menu, Launch projects even faster.
69+
- Arguments for text-generation-webui , try it out.
70+
- 2 other old projects of mine.
71+
- Safe-and-Stable-Ckpt2Safetensors-Conversion-Tool-GUI
72+
- Stable-Diffusion-Pickle-Scanner-GUI
73+
7674
### Spread the word; don't only keep it to yourself.
7775

78-
<img src="media/preview/0.1.1/1_0.1.1.jpg">
79-
<img src="media/preview/0.1.1/2_0.1.1.jpg">
76+
<img src="media/preview/0.1.2/1_0.1.2.jpg">
77+
<img src="media/preview/0.1.2/2_0.1.2.jpg">
8078
<img src="media/preview/0.0.7/2_0.0.7.jpg">
8179
<img src="media/preview/0.0.1/1_0.0.1.jpg">
8280

data/localizations/local.py

Lines changed: 752 additions & 0 deletions
Large diffs are not rendered by default.

layout/projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def create_layout_list_menu(projects):
2323
[
2424
sg.Image(project["image_path"], background_color=color.DARK_GRAY),
2525
sg.Button(project["title"], k=f"-select_app_{project['id']}_btn-", font=FONT, expand_x=True, size=(35, 1),button_color=(color.DIM_BLUE,color.GRAY)),
26-
# sg.Button('', k=f"-select_app_{project['id']}_btn-",size=(1,1),font=FONT,disabled=True, expand_x=False,button_color=color.DIM_GREEN if installation_status.check_project(project) else color.GRAY)
26+
sg.Button('', k=f"-select_app_{project['id']}_btn-",size=(1,1),font=FONT,disabled=True, expand_x=False,button_color=color.DIM_GREEN if installation_status.check_project(project) else color.GRAY)
2727

2828
],
2929
],

layout/settings.py

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77

88
def create_layout(lang_data,languages):
99

10-
show_creations_carousel = jt.load_preference('show_creations_carousel')
11-
if show_creations_carousel == None:
12-
show_creations_carousel = True
1310
native_name = lang_data[LOCAL_NATIVE]
1411

1512
layout = [
@@ -27,25 +24,8 @@ def create_layout(lang_data,languages):
2724
],
2825

2926
],expand_x=False,expand_y=False,size=(500,100),border_width=5,pad=(5,5),relief=sg.RELIEF_FLAT,element_justification="l",background_color=color.DARK_GRAY)
30-
],
31-
[
32-
sg.Frame('',[
33-
[
34-
sg.Image(data=ic.args,background_color=color.DARK_GRAY),
35-
sg.Text("Your creations",font=FONT,text_color=color.LIGHT_GRAY,background_color=color.DARK_GRAY),
36-
],
37-
[
38-
sg.Checkbox("Show 'Your creations' carousel on startup",
39-
default=show_creations_carousel,text_color=color.DIM_BLUE,background_color=color.GRAY,
40-
k='-SHOW_CREATIONS_CAROUSEL-',enable_events=True, expand_x=True, expand_y=False)
41-
],
42-
],expand_x=False,expand_y=False,size=(500,100),border_width=5,pad=(5,5),relief=sg.RELIEF_FLAT,element_justification="l",background_color=color.DARK_GRAY)
43-
],
27+
],
4428
],expand_x=True,expand_y=True,border_width=0,pad=(10,10),relief=sg.RELIEF_FLAT,element_justification="l")
4529
],
4630
]
4731
return layout
48-
49-
def events(event,values):
50-
if event == '-SHOW_CREATIONS_CAROUSEL-':
51-
jt.save_preference('show_creations_carousel',values['-SHOW_CREATIONS_CAROUSEL-'])

media/preview/0.1.2/1_0.1.2.jpg

223 KB
Loading

media/preview/0.1.2/2_0.1.2.jpg

196 KB
Loading

seait.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ def set_project_path(window, id_number, input_project_path,trigger_event=True):
293293
webbrowser.open(project_util.get_project_by_id(projects_data, id_number)['github_url'])
294294

295295
about_layout.events(event)
296-
settings_layout.events(event,values)
297296

298297

299298
if __name__ == '__main__':

util/projects_data.py

Lines changed: 95 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,10 +899,103 @@
899899
},
900900
],
901901
"args": [
902-
902+
[
903+
{
904+
"button_text": "--auto-launch",
905+
},
906+
{
907+
"button_text": "--model-menu",
908+
},
909+
],
910+
[
911+
912+
{
913+
"button_text": "--notebook",
914+
},
915+
{
916+
"button_text": "--chat",
917+
},
918+
],
919+
[
920+
{
921+
"button_text": "--cai-chat",
922+
},
923+
{
924+
"button_text": "--character",
925+
},
926+
],
927+
[
928+
{
929+
"button_text": "--model",
930+
},
931+
{
932+
"button_text": "--lora LORA",
933+
},
934+
{
935+
"button_text": "--model-dir",
936+
},
937+
],
938+
[
939+
{
940+
"button_text": "--settings",
941+
},
942+
{
943+
"button_text": "--xformers",
944+
},
945+
],
946+
[
947+
{
948+
"button_text": "--extensions",
949+
},
950+
{
951+
"button_text": "--verbose",
952+
},
953+
],
954+
[
955+
{
956+
"button_text": "--cpu",
957+
},
958+
{
959+
"button_text": "--auto-devices",
960+
},
961+
],
962+
[
963+
{
964+
"button_text": "--gpu-memory",
965+
},
966+
{
967+
"button_text": "--cpu-memory",
968+
},
969+
],
970+
[
971+
972+
{
973+
"button_text": "--listen",
974+
"key": "listen",
975+
},
976+
{
977+
"button_text": "--listen-host",
978+
},
979+
{
980+
"button_text": "--listen-port=7862",
981+
},
982+
],
983+
[
984+
{
985+
"button_text": "--gradio-auth-path",
986+
},
987+
{
988+
"button_text": "--api",
989+
},
990+
{
991+
"button_text": "--share",
992+
},
993+
]
903994
],
904995
"def_args": [
905-
],
996+
"--auto-launch",
997+
"--chat"
998+
],
906999
"description":["""Text generation web UI is like auto1111 webui for large language models """]
9071000
},
9081001
{

0 commit comments

Comments
 (0)