diff --git a/VERSION b/VERSION index ceab6e1..7693c96 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1 \ No newline at end of file +0.1.3 \ No newline at end of file diff --git a/install/windows/windows.iss b/install/windows/windows.iss index 4e5026f..14e6b6d 100644 --- a/install/windows/windows.iss +++ b/install/windows/windows.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "LPHK" -#define MyAppVersion "b0.1.2" +#define MyAppVersion "b0.1.3" #define MyAppPublisher "Ella Jameson (nimaid)" #define MyAppURL "https://github.com/nimaid/LPHK" #define MyAppExeName "run.bat" diff --git a/run.bat b/run.bat index 23bb268..1458d48 100644 --- a/run.bat +++ b/run.bat @@ -1,5 +1,4 @@ @echo off set STARTPATH="%CD%" cd "%~dp0" -conda activate LPHK & python LPHK.py & conda deactivate -cd %STARTPATH% \ No newline at end of file +conda activate LPHK & python LPHK.py & conda deactivate & cd %STARTPATH% \ No newline at end of file diff --git a/window.py b/window.py index e7f16ab..36f760f 100644 --- a/window.py +++ b/window.py @@ -100,6 +100,8 @@ def init_window(self): self.m_Help.add_command(label="Open README...", command=open_readme) open_scripting = lambda: webbrowser.open("https://github.com/nimaid/LPHK#what-is-lphkscript-table-of-contents") self.m_Help.add_command(label="Scripting help...", command=open_scripting) + open_main_folder = lambda: files.open_file_folder(PATH) + self.m_Help.add_command(label="Program folder...", command=open_main_folder) display_info = lambda: self.popup(self, "About LPHK", self.info_image, "A Novation Launchpad Macro Scripting System\nMade by Ella Jameson (nimaid)\n\nVersion: " + files.PROG_VERSION + "\nFile format version: " + files.FILE_VERSION, "Done") self.m_Help.add_command(label="About LPHK", command=display_info) self.m.add_cascade(label="Help", menu=self.m_Help)