Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Nov 16, 2023
1 parent b112265 commit 36fd2e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Changelog----------------------------

v7.6.8
v7.7.0

- Added new interactive icons for shuffle and repeat (Thanks @skylineone044 for help with that)
- Added last.fm artist image scraping for artist backgrounds
Expand All @@ -10,6 +10,7 @@ v7.6.8
- Reverted change to last.fm album artist detection
- Fixed a possible crash with queue open
- Fixed a possible crash dragging tracks
- Fixed an issue with fanart.tv artist images

v7.6.7

Expand Down
9 changes: 8 additions & 1 deletion t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12437,6 +12437,7 @@ def get_background(self, track):
assert l > 1000

# Cache image for future use
path = os.path.join(a_cache_dir, artist + '-ftv-full.jpg')
f = open(path, "wb")
f.write(t.read())
f.close()
Expand All @@ -12445,6 +12446,7 @@ def get_background(self, track):
return t

except:
#raise
print("Failed to find fanart background for: %s" % artist)
if not gui.artist_info_panel:
artist_info_box.get_data(artist)
Expand Down Expand Up @@ -27524,8 +27526,13 @@ def theme(self, x0, y0, w0, h0):

y += 23 * gui.scale

old = prefs.enable_fanart_bg
prefs.enable_fanart_bg = self.toggle_square(x + 10 * gui.scale, y, prefs.enable_fanart_bg,
_("Prefer artist backgrounds (uses scraping)"))
_("Prefer artist backgrounds"))
if prefs.enable_fanart_bg and prefs.enable_fanart_bg != old:
if not prefs.auto_dl_artist_data:
prefs.auto_dl_artist_data = True
show_message("Also enabling \"auto-fech artist data\" to scrape last.fm.", "You can toggle this back off under Settings > Function")
y += 23 * gui.scale

self.toggle_square(x + 10 * gui.scale, y, toggle_auto_bg_strong, _("Stronger"))
Expand Down
2 changes: 1 addition & 1 deletion tauon.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if sys.platform != 'win32':
import fcntl

n_version = "7.6.8"
n_version = "7.7.0"
t_version = "v" + n_version
t_title = 'Tauon Music Box'
t_id = 'tauonmb'
Expand Down

0 comments on commit 36fd2e0

Please sign in to comment.