From 619b7ab4be7b37e3f7f055e7045be65e40d45aa5 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Fri, 17 Apr 2026 15:05:57 -0700 Subject: [PATCH] Update What's New and version modal with recent fixes --- web_server.py | 2 ++ webui/static/helper.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/web_server.py b/web_server.py index 582ed46e..8c227569 100644 --- a/web_server.py +++ b/web_server.py @@ -22333,6 +22333,8 @@ def get_version_info(): "• Fix slskd timeout spam — dashboard and download status skip slskd polling when Soulseek is not active or disconnected", "• Fix Soulseek search queries missing album name — reduces wrong-artist downloads", "• Downloads batch panel — color-coded batch cards with progress, cancel, expand, and 7-day history", + "• Fix Unknown Artist when adding playlist tracks to wishlist", + "• Fix download modal freezing mid-download — M3U auto-save was exhausting server threads", "• Reject Soulseek results from Various Artists/VA/Unknown Artist folders", "• Clearing wishlist now cancels the active wishlist download batch", ], diff --git a/webui/static/helper.js b/webui/static/helper.js index 004d92c0..a635a830 100644 --- a/webui/static/helper.js +++ b/webui/static/helper.js @@ -3617,6 +3617,8 @@ const WHATS_NEW = { { title: 'Reject Junk Artist Soulseek Results', desc: 'Soulseek search results from "Various Artists", "VA", "Unknown Artist", and "Unknown Album" folders are now automatically rejected. These compilation/junk folders almost never contain properly tagged files for the target artist' }, { title: 'Clear Wishlist Cancels Downloads', desc: 'Clearing the wishlist now also cancels any active wishlist download batch. Previously the download queue would keep running after the wishlist was cleared' }, { title: 'Downloads Batch Panel', desc: 'Downloads page now shows a batch context panel on the right side. Each active batch (wishlist, sync, album download) gets a color-coded card with progress, cancel button, and expandable track list. Color indicators on download rows link them to their batch. Completed batch history shows the last 7 days', page: 'active-downloads' }, + { title: 'Fix Unknown Artist on Wishlist Downloads', desc: 'Adding tracks to wishlist from a playlist download modal was storing "Unknown Artist" as the artist context. Now resolves the artist per-track from the track\'s own metadata instead of the playlist-level artist which is only set for album downloads' }, + { title: 'Fix Download Modal Freezing Mid-Download', desc: 'Download modals (wishlist, sync, album) would freeze and stop updating after the first track completed. Caused by M3U auto-save firing every 2 seconds during downloads, exhausting Flask server threads. Now saves M3U once on completion only' }, // --- April 15, 2026 --- { date: 'April 15, 2026' },