From c20faf1bde77026c32817f9c41eea0f2caf2f544 Mon Sep 17 00:00:00 2001 From: Elijah Lopez Date: Fri, 4 Oct 2024 16:32:13 -0400 Subject: [PATCH] Fix open web gui --- CHANGELOG.txt | 3 +++ build_files/mc_version_info.txt | 8 ++++---- build_files/setup_script.iss | 2 +- src/meta.py | 4 ++-- src/music_caster.py | 1 + 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7973ad5..3cde5cd 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,8 @@ Music Caster by Elijah Lopez Changelog +5.21.1 +- [Fix] Open web gui + 5.21.0 - [UI] Rounded rectangle buttons - [UI] Improve spacing and alignments diff --git a/build_files/mc_version_info.txt b/build_files/mc_version_info.txt index b709a1a..23b30c2 100644 --- a/build_files/mc_version_info.txt +++ b/build_files/mc_version_info.txt @@ -2,8 +2,8 @@ # For more details about fixed file info 'ffi' see: http://msdn.microsoft.com/en-us/library/ms646997.aspx VSVersionInfo( ffi=FixedFileInfo( - prodvers=(5, 21, 0, 0), - filevers=(5, 21, 0, 0), + prodvers=(5, 21, 1, 0), + filevers=(5, 21, 1, 0), # Contains a bitmask that specifies the valid bits 'flags'r mask=0x17, # Contains a bitmask that specifies the Boolean attributes of the file. @@ -27,12 +27,12 @@ VSVersionInfo( '000004b0', [StringStruct('CompanyName', 'Elijah Lopez'), StringStruct('FileDescription', 'Music Caster'), - StringStruct('FileVersion', '5.21.0.0'), + StringStruct('FileVersion', '5.21.1.0'), StringStruct('InternalName', 'Music Caster'), StringStruct('LegalCopyright', 'Copyright (c) 2019 - 2024, Elijah Lopez'), StringStruct('OriginalFilename', 'Music Caster.exe'), StringStruct('ProductName', 'Music Caster'), - StringStruct('ProductVersion', '5.21.0.0')]) + StringStruct('ProductVersion', '5.21.1.0')]) ]), VarFileInfo([VarStruct('Translation', [0, 1200])]) ] diff --git a/build_files/setup_script.iss b/build_files/setup_script.iss index bb0bb77..852b11e 100644 --- a/build_files/setup_script.iss +++ b/build_files/setup_script.iss @@ -1,5 +1,5 @@ #define MyAppName "Music Caster" -#define MyAppVersion "5.21.0" +#define MyAppVersion "5.21.1" #define MyAppPublisher "Elijah Lopez" #define MyAppURL "https://elijahlopez.ca/software#music-caster" #define MyAppExeName "Music Caster.exe" diff --git a/src/meta.py b/src/meta.py index 40854bf..7e8b134 100644 --- a/src/meta.py +++ b/src/meta.py @@ -1,7 +1,7 @@ -VERSION = latest_version = '5.21.0' +VERSION = latest_version = '5.21.1' UPDATE_MESSAGE = """ [NEW] Update notifier (for real this time) -[NEW] Update notifier (for real this time) +[NEW] Rounded rectangle buttons [MSG] Language translators wanted """.strip() IMPORTANT_INFORMATION = """ diff --git a/src/music_caster.py b/src/music_caster.py index 561608d..853960d 100644 --- a/src/music_caster.py +++ b/src/music_caster.py @@ -219,6 +219,7 @@ def activate_instance(port=2001, default_timeout=0.5, to_port=2004): startfile, custom_art, get_album_art, + get_lan_ip, get_metadata, Unknown, get_file_name,