File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33
44#define MyAppName " Music Caster"
5- #define MyAppVersion " 2.3 .0"
5+ #define MyAppVersion " 3.0 .0"
66#define MyAppPublisher " Elijah Lopez"
77#define MyAppURL " https://elijahlopez.herokuapp.com/"
88#define MyAppExeName " Music Caster.exe"
Original file line number Diff line number Diff line change 3131
3232mutex = win32event .CreateMutex (None , False , 'name' )
3333last_error = win32api .GetLastError ()
34-
3534if last_error == ERROR_ALREADY_EXISTS : sys .exit () # one instance
3635
36+ CURRENT_VERSION = '3.0.0'
3737starting_dir = os .path .dirname (os .path .realpath (__file__ ))
3838os .chdir ('C:/' )
3939PORT = 2001
4747 PORT += 1
4848
4949user32 = ctypes .windll .user32
50- SCREEN_WIDTH , SCREEN_HEIGHT = user32 .GetSystemMetrics (0 ), user32 .GetSystemMetrics (1 )
51- sg .ChangeLookAndFeel ('Black' )
50+ # SCREEN_WIDTH, SCREEN_HEIGHT = user32.GetSystemMetrics(0), user32.GetSystemMetrics(1)
5251home_music_dir = str (Path .home ()).replace ('\\ ' , '/' ) + '/Music'
53- CURRENT_VERSION = '2.3.0'
52+
5453settings = { # default settings
5554 'previous device' : None ,
5655 'comments' : ['Edit only the variables below' , 'Restart the program after editing this file!' ],
You can’t perform that action at this time.
0 commit comments