Skip to content

Commit aa20d04

Browse files
committed
Refactoring + Version Update
1 parent d1482f5 commit aa20d04

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

Installer Script.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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"

music_caster.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131

3232
mutex = win32event.CreateMutex(None, False, 'name')
3333
last_error = win32api.GetLastError()
34-
3534
if last_error == ERROR_ALREADY_EXISTS: sys.exit() # one instance
3635

36+
CURRENT_VERSION = '3.0.0'
3737
starting_dir = os.path.dirname(os.path.realpath(__file__))
3838
os.chdir('C:/')
3939
PORT = 2001
@@ -47,10 +47,9 @@
4747
PORT += 1
4848

4949
user32 = 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)
5251
home_music_dir = str(Path.home()).replace('\\', '/') + '/Music'
53-
CURRENT_VERSION = '2.3.0'
52+
5453
settings = { # default settings
5554
'previous device': None,
5655
'comments': ['Edit only the variables below', 'Restart the program after editing this file!'],

0 commit comments

Comments
 (0)