diff --git a/Windows/lazy-dsi-file-downloader-v.1.0.0.exe b/Windows/lazy-dsi-file-downloader-v.1.0.0.exe index 87275f6..adfdfce 100644 Binary files a/Windows/lazy-dsi-file-downloader-v.1.0.0.exe and b/Windows/lazy-dsi-file-downloader-v.1.0.0.exe differ diff --git a/__pycache__/main.cpython-36.pyc b/__pycache__/main.cpython-36.pyc new file mode 100644 index 0000000..553cce6 Binary files /dev/null and b/__pycache__/main.cpython-36.pyc differ diff --git a/assets/files/auto-py-to-exe config/config.json b/assets/files/auto-py-to-exe config/config.json new file mode 100644 index 0000000..68e79d9 --- /dev/null +++ b/assets/files/auto-py-to-exe config/config.json @@ -0,0 +1,85 @@ +{ + "version": "auto-py-to-exe-configuration_v1", + "pyinstallerOptions": [ + { + "optionDest": "noconfirm", + "value": true + }, + { + "optionDest": "filenames", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/main.py" + }, + { + "optionDest": "onefile", + "value": true + }, + { + "optionDest": "console", + "value": true + }, + { + "optionDest": "icon_file", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/lazy.ico" + }, + { + "optionDest": "name", + "value": "lazy-dsi-file-downloader" + }, + { + "optionDest": "ascii", + "value": false + }, + { + "optionDest": "clean_build", + "value": false + }, + { + "optionDest": "strip", + "value": false + }, + { + "optionDest": "noupx", + "value": false + }, + { + "optionDest": "uac_admin", + "value": false + }, + { + "optionDest": "uac_uiaccess", + "value": false + }, + { + "optionDest": "win_private_assemblies", + "value": false + }, + { + "optionDest": "win_no_prefer_redirects", + "value": false + }, + { + "optionDest": "bootloader_ignore_signals", + "value": false + }, + { + "optionDest": "datas", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/certifi;certifi/" + }, + { + "optionDest": "datas", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/requests;requests/" + }, + { + "optionDest": "datas", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/urllib3;urllib3/" + }, + { + "optionDest": "datas", + "value": "C:/Users/kalam/Documents/GitHub/just-a-dsi-cfw-installer/lazy.ico;." + } + ], + "nonPyinstallerOptions": { + "increaseRecursionLimit": true, + "manualArguments": "" + } +} \ No newline at end of file diff --git a/main.py b/main.py index 484645c..481cd48 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,8 @@ +# Created by YourKalamity +#https://github.com/YourKalamity/lazy-dsi-file-downloader + + import tkinter from tkinter import messagebox from tkinter import filedialog @@ -22,11 +26,13 @@ memoryPitLinks = ["https://github.com/YourKalamity/just-a-dsi-cfw-installer/raw/ window = tkinter.Tk() window.sourceFolder = '' window.sourceFile = '' -appTitle = tkinter.Label(text="Lazy DSi file downloader") +appTitle = tkinter.Label(text="Lazy DSi file downloader",font=('Verdana', 14), fg="white", bg="black") appTitle.width = 100 -SDlabel = tkinter.Label(text = "SD card directory") +appAuthor = tkinter.Label(text="by YourKalamity",font=('Verdana', 10, 'italic'), anchor="w") +appAuthor.width = 100 +SDlabel = tkinter.Label(text = "Enter your SD card's directory") SDlabel.width = 100 -SDentry = tkinter.Entry() +SDentry = tkinter.Entry(width=30) SDentry.width = 100 def getLatestTWLmenu(): @@ -186,11 +192,11 @@ def chooseDir(): SDentry.insert(0, window.sourceFolder) -b_chooseDir = tkinter.Button(window, text = "Choose Folder", width = 20, command = chooseDir) +b_chooseDir = tkinter.Button(window, text = "Click to select folder", width = 25, command = chooseDir) b_chooseDir.width = 100 b_chooseDir.height = 50 -firmwareLabel = tkinter.Label(text = "Select your DSi firmware") +firmwareLabel = tkinter.Label(text = "Select your DSi firmware : ") firmwareLabel.width = 100 firmwareVersion = tkinter.StringVar(window) @@ -201,7 +207,7 @@ selector.width = 100 unlaunch = tkinter.IntVar(value=1) unlaunchCheck = tkinter.Checkbutton(window, text = "Download Unlaunch?", variable =unlaunch) -startButton = tkinter.Button(window, text = "Start", width = 20, command = start) +startButton = tkinter.Button(window, text = "Start", width = 25, command = start) outputLabel = tkinter.Label(text="Output") outputLabel.width = 100 outputBox = tkinter.Text(window,state='disabled', width = 30, height = 10) @@ -209,6 +215,7 @@ outputBox = tkinter.Text(window,state='disabled', width = 30, height = 10) window.title("Lazy DSi file downloader") window.resizable(0, 0) appTitle.pack() +appAuthor.pack() SDlabel.pack() SDentry.pack() b_chooseDir.pack()