From 0f0ec3acb880b45ae0fb01feeb0c18b4150f5c54 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Wed, 1 Apr 2026 20:46:42 -0700 Subject: [PATCH] Bump version to 2.2, update changelogs with all new features Version 2.2 includes: Wing It mode, Server Playlist Manager, Track Redownload with source info, redesigned notifications, Spotify API caching improvements, hybrid download fix, discovery progress fix, YouTube Topic suffix fix, CAA art toggle, Genius search improvements, auto-pause enrichment during downloads, download blacklist system, and download provenance tracking. Updated: SOULSYNC_VERSION, version button, helper.js WHATS_NEW key, docker-publish.yml default version. --- .github/workflows/docker-publish.yml | 2 +- web_server.py | 16 +++++++++++++++- webui/index.html | 2 +- webui/static/helper.js | 9 ++++++--- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index b6497acd..74359da5 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -6,7 +6,7 @@ on: version_tag: description: 'Version tag (e.g. 1.6, 1.7)' required: true - default: '2.1' + default: '2.2' jobs: build-and-push: diff --git a/web_server.py b/web_server.py index 6285b236..ee1502e0 100644 --- a/web_server.py +++ b/web_server.py @@ -32,7 +32,7 @@ from config.settings import config_manager logger = get_logger("web_server") # App version — single source of truth for backup metadata, version-info endpoint, etc. -SOULSYNC_VERSION = "2.1" +SOULSYNC_VERSION = "2.2" # Dedicated source reuse logger — writes to logs/source_reuse.log import logging as _logging @@ -20014,6 +20014,20 @@ def get_version_info(): "title": "What's New in SoulSync", "subtitle": f"Version {SOULSYNC_VERSION} — Latest Changes", "sections": [ + { + "title": "⚡ Wing It — Download or Sync Without Discovery", + "description": "Bypass metadata discovery and use raw track names directly", + "features": [ + "• Wing It button on all discovery modals and ListenBrainz Discover page cards", + "• Choose Download or Sync from a compact dropdown — no extra dialogs", + "• Download: sends raw artist/title to the download engine with full post-processing", + "• Sync: creates playlist on media server by matching raw names against library", + "• Failed tracks are NOT added to wishlist — clean wing-it behavior", + "• Live sync progress displayed inline just like normal sync", + "• Download creates a bubble on the dashboard for progress tracking" + ], + "usage_note": "Click the ⚡ Wing It button next to Start Discovery or Download Missing in any playlist modal." + }, { "title": "🔔 Redesigned Notification System", "description": "Modern compact toasts with notification history and bell button", diff --git a/webui/index.html b/webui/index.html index 7d6d45a7..17916c83 100644 --- a/webui/index.html +++ b/webui/index.html @@ -306,7 +306,7 @@