Skip to content

Commit 2a3494c

Browse files
committed
0.1.3 - Symlink
1 parent 3eede47 commit 2a3494c

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,26 @@ 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.2]
64+
### Update [0.1.3]
6565

6666
Added
6767

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
68+
- Toolbox tab
69+
- Under toolbox tab, added symlink link creator
70+
- Out of space? No problem, now you can put all your models in one directory and create symbolic links to them.
71+
you can do this for any directory you want including virtual environments if you want it too.
72+
73+
- Symlink Tool - a tool that creates symbolic links.
74+
- Models Treasury - a centralized folder for all the popular model directories. Simply assign to use on all your projects.
75+
76+
Video tutorial soon.
7377

7478
### Spread the word; don't only keep it to yourself.
7579

7680
<img src="media/preview/0.1.2/1_0.1.2.jpg">
81+
<img src="media/preview/0.1.3/1_0.1.3.jpg">
7782
<img src="media/preview/0.1.2/2_0.1.2.jpg">
83+
7884
<img src="media/preview/0.0.7/2_0.0.7.jpg">
7985
<img src="media/preview/0.0.1/1_0.0.1.jpg">
8086

layout/toolbox.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,18 @@
3131
}
3232
def convert_to_backslashes(file_path):
3333
return file_path.replace("\\", "/")
34-
main_folder = 'models_treasury'
35-
getcwd = convert_to_backslashes(os.path.abspath(os.getcwd()))
36-
path = convert_to_backslashes(os.path.join(getcwd,main_folder))
37-
preference_models_treasury_path = jt.load_preference('models_treasury_path')
38-
if preference_models_treasury_path != None:
39-
path = preference_models_treasury_path
4034

41-
def create_layout(lang_data,tools):
4235

4336

37+
def create_layout(lang_data,tools):
38+
main_folder = 'models_treasury'
39+
getcwd = convert_to_backslashes(os.path.abspath(os.getcwd()))
40+
path = convert_to_backslashes(os.path.join(getcwd,main_folder))
41+
# jt.save_preference('models_treasury_path',path)
42+
43+
preference_models_treasury_path = jt.load_preference('models_treasury_path')
44+
if not preference_models_treasury_path == None:
45+
path = preference_models_treasury_path
4446

4547

4648
tools =[
@@ -66,7 +68,7 @@ def create_layout(lang_data,tools):
6668
sg.Text(lang_data[LOCAL_WARNING].upper(),font=FONT,text_color=color.RED_ORANGE,background_color=color.DARK_GRAY),
6769
],
6870
[
69-
sg.Text(lang_data[LOCAL_CLOSE_RUNNING_PROJECTS],font=FONT,text_color=color.RED_ORANGE,background_color=color.DARK_GRAY),
71+
sg.Text(lang_data[LOCAL_CLOSE_RUNNING_PROJECTS],size=(45,2),font=FONT,text_color=color.RED_ORANGE,background_color=color.DARK_GRAY),
7072
],
7173
[
7274
sg.ML(f"""

media/preview/0.1.3/1_0.1.3.jpg

115 KB
Loading

seait.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import layout.settings as settings_layout
2626
import layout.toolbox as toolbox_layout
2727

28-
import os
2928
def main():
3029
jt.create_preferences_init()
3130
languages = localizations.get_language_by_codes()

0 commit comments

Comments
 (0)