Skip to content

Commit 6066cf3

Browse files
author
shump
committed
remove messageBox, remove sleep command
1 parent 73a04ed commit 6066cf3

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

main.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def apply(self):
3737

3838
global master_password
3939
master_password = None
40-
APP_VERSION = "0.2.0"
40+
APP_VERSION = "0.2.1"
4141
APP_NAME = "shellar.io"
4242
APP_DATA_PATH = os.path.expanduser(f"~/.{APP_NAME}")
4343

@@ -123,7 +123,6 @@ def connect():
123123
else
124124
echo "SSH setup failed. Please resolve the issues and try again."
125125
fi
126-
sleep 10
127126
""")
128127
os.chmod(script_path, 0o755)
129128

@@ -134,8 +133,6 @@ def connect():
134133
end tell
135134
'''
136135

137-
messagebox.showinfo("SSH Key Setup", "Attempting to set up SSH key authentication. A new Terminal window will open for this process.")
138-
139136
subprocess.run(["osascript", "-e", applescript_command], check=True)
140137

141138
def load_config():

tools/create-dmg.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ create-dmg \
33
--window-pos 200 120 \
44
--window-size 800 400 \
55
--icon-size 100 \
6-
--icon "shellar.io.app" 200 190 \
7-
--hide-extension "shellar.io.app" \
6+
--icon "shellar.app" 200 190 \
7+
--hide-extension "shellar.app" \
88
--app-drop-link 600 185 \
99
"shellar.io.dmg" \
10-
"shellar.io.app"
10+
"shellar.app"

tools/pyinstaller.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
date=$(date -u +"%Y%d%m%H%M")
33
source venv/bin/activate
4-
pyinstaller --name="shellar" --onefile --windowed --hidden-import=requests --hidden-import=markdown --hidden-import=tkhtmlview --distpath="~/build/shellar.io.v$date/dist" --icon="../graSSHopper/icons/shellar.icns" main.py
4+
pyinstaller --name="shellar" --onefile --windowed --hidden-import=requests --hidden-import=markdown --hidden-import=tkhtmlview --distpath="~/build/shellar.io.v$date-silicon/dist" --icon="../graSSHopper/icons/shellar.icns" main.py

0 commit comments

Comments
 (0)