Skip to content

Commit 2647064

Browse files
committed
Version++
1 parent 3ae51af commit 2647064

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Music Caster by Elijah Lopez Changelog
22

3+
5.21.0
4+
- [UI] Rounded rectangle buttons
5+
- [UI] Improve spacing and alignments
6+
37
5.20.2
48
- [Fix] Hide install update button
59

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, 20, 2, 0),
6-
filevers=(5, 20, 2, 0),
5+
prodvers=(5, 21, 0, 0),
6+
filevers=(5, 21, 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.20.2.0'),
30+
StringStruct('FileVersion', '5.21.0.0'),
3131
StringStruct('InternalName', 'Music Caster'),
3232
StringStruct('LegalCopyright', 'Copyright (c) 2019 - 2024, Elijah Lopez'),
3333
StringStruct('OriginalFilename', 'Music Caster.exe'),
3434
StringStruct('ProductName', 'Music Caster'),
35-
StringStruct('ProductVersion', '5.20.2.0')])
35+
StringStruct('ProductVersion', '5.21.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.20.2"
2+
#define MyAppVersion "5.21.0"
33
#define MyAppPublisher "Elijah Lopez"
44
#define MyAppURL "https://elijahlopez.ca/software#music-caster"
55
#define MyAppExeName "Music Caster.exe"

src/meta.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
VERSION = latest_version = '5.20.2'
1+
VERSION = latest_version = '5.21.0'
22
UPDATE_MESSAGE = """
33
[NEW] Update notifier (for real this time)
4+
[NEW] Update notifier (for real this time)
45
[MSG] Language translators wanted
56
""".strip()
67
IMPORTANT_INFORMATION = """

0 commit comments

Comments
 (0)