Skip to content

Commit f88daea

Browse files
committed
Fix wrong database file name
1 parent 791000f commit f88daea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build_files/mc_version_info.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# For more details about fixed file info 'ffi' see: http://msdn.microsoft.com/en-us/library/ms646997.aspx
33
VSVersionInfo(
44
ffi=FixedFileInfo(
5-
prodvers=(5, 23, 8, 0),
6-
filevers=(5, 23, 8, 0),
5+
prodvers=(5, 24, 0, 0),
6+
filevers=(5, 24, 0, 0),
77
# Contains a bitmask that specifies the valid bits 'flags'r
88
mask=0x17,
99
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -27,12 +27,12 @@ VSVersionInfo(
2727
'000004b0',
2828
[StringStruct('CompanyName', 'Elijah Lopez'),
2929
StringStruct('FileDescription', 'Music Caster'),
30-
StringStruct('FileVersion', '5.23.8.0'),
30+
StringStruct('FileVersion', '5.24.0.0'),
3131
StringStruct('InternalName', 'Music Caster'),
3232
StringStruct('LegalCopyright', 'Copyright (c) 2019 - 2025, Elijah Lopez'),
3333
StringStruct('OriginalFilename', 'Music Caster.exe'),
3434
StringStruct('ProductName', 'Music Caster'),
35-
StringStruct('ProductVersion', '5.23.8.0')])
35+
StringStruct('ProductVersion', '5.24.0.0')])
3636
]),
3737
VarFileInfo([VarStruct('Translation', [0, 1200])])
3838
]

build_files/setup_script.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "Music Caster"
2-
#define MyAppVersion "5.23.8"
2+
#define MyAppVersion "5.24.0"
33
#define MyAppPublisher "Elijah Lopez"
44
#define MyAppURL "https://elijahlopez.ca/software#music-caster"
55
#define MyAppExeName "Music Caster.exe"

src/modules/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class DatabaseConnection:
99
OLD_DATABASE_FILE = Path('music_caster.db').absolute()
10-
DEFAULT_DATABASE_FILE = (Path(appdirs.user_data_dir(roaming=True)) / BUNDLE_IDENTIFIER / 'settings.json').absolute()
10+
DEFAULT_DATABASE_FILE = (Path(appdirs.user_data_dir(roaming=True)) / BUNDLE_IDENTIFIER / 'music_caster.db').absolute()
1111
DATABASE_FILE = OLD_DATABASE_FILE
1212

1313
@staticmethod

0 commit comments

Comments
 (0)