Skip to content

Commit

Permalink
fix: chromecast status callback
Browse files Browse the repository at this point in the history
  • Loading branch information
elibroftw committed Mar 13, 2024
1 parent 54c0488 commit 1cb4b92
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Music Caster by Elijah Lopez Changelog

5.16.6
- [Fix] Chromecast status callback

5.16.5
- [Fix] Chromecast status callback

Expand Down
8 changes: 4 additions & 4 deletions build_files/mc_version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# noinspection PyUnresolvedReferences
VSVersionInfo(
ffi=FixedFileInfo(
prodvers=(5, 16, 5, 0),
filevers=(5, 16, 5, 0),
prodvers=(5, 16, 6, 0),
filevers=(5, 16, 6, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x17,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -28,12 +28,12 @@ VSVersionInfo(
'000004b0',
[StringStruct('CompanyName', 'Elijah Lopez'),
StringStruct('FileDescription', 'Music Caster'),
StringStruct('FileVersion', '5.16.5.0'),
StringStruct('FileVersion', '5.16.6.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.16.5.0')])
StringStruct('ProductVersion', '5.16.6.0')])
]),
VarFileInfo([VarStruct('Translation', [0, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion build_files/setup_script.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Music Caster"
#define MyAppVersion "5.16.5"
#define MyAppVersion "5.16.6"
#define MyAppPublisher "Elijah Lopez"
#define MyAppURL "https://elijahlopez.ca/software#music-caster"
#define MyAppExeName "Music Caster.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/meta.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = latest_version = '5.16.5'
VERSION = latest_version = '5.16.6'
UPDATE_MESSAGE = """
[NEW] Bienvenue Français
[MSG] Language translators wanted
Expand Down
2 changes: 1 addition & 1 deletion src/music_caster.py
Original file line number Diff line number Diff line change
Expand Up @@ -3626,7 +3626,7 @@ def auto_update():
app_log.info(f'auto_update: no update found, or no internet, or API rate limited')


def cast_monitor(sent: bool, msg: dict = None):
def cast_monitor(sent: bool = True, msg: dict = None):
global track_position, track_start, track_end, OLD_CAST_VOLUME, OLD_CAST_POS
if cast is None:
return
Expand Down

0 comments on commit 1cb4b92

Please sign in to comment.