Skip to content

Commit

Permalink
yt-dlp update
Browse files Browse the repository at this point in the history
  • Loading branch information
elibroftw committed Dec 19, 2024
1 parent b1dcb57 commit 043571a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Music Caster by Elijah Lopez Changelog
Music Caster Changelog

5.22.1
- [Fix] URL extraction

5.22.0
- [UI] Added Português (Brazil) translation
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.22.0'
VERSION = latest_version = '5.22.1'
UPDATE_MESSAGE = """
[NEW] Update notifier (for real this time)
[NEW] Rounded rectangle buttons
Expand Down
2 changes: 1 addition & 1 deletion src/music_caster.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def refresh_tray(refresh_devices=False):
# refresh playlists
tray_playlists.clear()
tray_playlists.append(t('Playlists Tab'))
tray_playlists.extend([(f'{pl}'.replace('&', '&&&'), f'PL:{pl}') for pl in settings['playlists']])
tray_playlists.extend([(pl.replace('&', '&&&'), f'PL:{pl}') for pl in settings['playlists']])
# tell tray process to update
# icon = FILLED_ICON if playing_status.playing() else UNFILLED_ICON
icon = {'filled': None} if playing_status.playing() else {'unfilled': None}
Expand Down

0 comments on commit 043571a

Please sign in to comment.