diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 734cb8b..259d0c8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/src/meta.py b/src/meta.py index 318352b..6ad2d7d 100644 --- a/src/meta.py +++ b/src/meta.py @@ -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 diff --git a/src/music_caster.py b/src/music_caster.py index 9534715..02a29d4 100644 --- a/src/music_caster.py +++ b/src/music_caster.py @@ -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}