From ef8cff3c6906e8785dba98b9b7bb5d4130d2fc11 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sun, 19 Apr 2026 18:40:58 -0700 Subject: [PATCH] Version bump to 2.34 --- web_server.py | 2 +- webui/static/helper.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web_server.py b/web_server.py index a6e6a1f4..e6739411 100644 --- a/web_server.py +++ b/web_server.py @@ -36,7 +36,7 @@ _log_path = config_manager.get('logging.path', 'logs/app.log') logger = setup_logging(_log_level, _log_path) # App version — single source of truth for backup metadata, version-info endpoint, etc. -SOULSYNC_VERSION = "2.33" +SOULSYNC_VERSION = "2.34" # Dedicated source reuse logger — writes to logs/source_reuse.log import logging as _logging diff --git a/webui/static/helper.js b/webui/static/helper.js index 8e1c6fec..f4960fd6 100644 --- a/webui/static/helper.js +++ b/webui/static/helper.js @@ -3599,7 +3599,7 @@ function closeHelperSearch() { // ═══════════════════════════════════════════════════════════════════════════ const WHATS_NEW = { - '2.33': [ + '2.34': [ // --- April 19, 2026 --- { date: 'April 19, 2026' }, { title: 'Fix Wishlist Albums Cycle Stuck at 1 Concurrent', desc: 'Auto-wishlist processing during the "albums" cycle was limited to 1 concurrent download even with higher configured settings. The max_concurrent=1 restriction is only needed for Soulseek folder-based album grabs, not individual wishlist track downloads. Albums cycle now uses the configured concurrency like singles' }, @@ -3735,12 +3735,12 @@ const WHATS_NEW = { function _getCurrentVersion() { const btn = document.querySelector('.version-button'); - return btn ? btn.textContent.trim().replace('v', '') : '2.33'; + return btn ? btn.textContent.trim().replace('v', '') : '2.34'; } function _getLatestWhatsNewVersion() { const versions = Object.keys(WHATS_NEW).sort((a, b) => parseFloat(b) - parseFloat(a)); - return versions[0] || '2.33'; + return versions[0] || '2.34'; } function openWhatsNew() {