prepare for 0.21.0 release

This commit is contained in:
Drew Weymouth
2026-03-11 17:02:31 -07:00
parent 03fd760589
commit 9885b1c1ba
5 changed files with 67 additions and 31 deletions
+15 -14
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.20.1"
AppVersion = "0.21.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,20 +15,21 @@ const (
var (
WhatsAdded = `
## Added
* Improved translations for Chinese, Japanese, Italian
* Setting to disable fade out on pause
* Ignore SSL validation setting migrated to per-server option`
* Shuffle play queue
* All Tracks tab on Artist page
* Equalizer improvements: 10-band EQ option, AutoEQ headphone profiles, preset management
* Song Radio context menu item on play queue
* Display radio stream ICY metadata
* -rate-current CLI option to rate the currently playing track
* -reload-theme CLI flag to re-apply the current theme
* Updated Polish and Chinese translations`
WhatsFixed = `
## Fixed
* Some uPnP devices not recognized
* Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00
* Regression in peak meter animation smoothness
* Some optimizations of tracklist rendering
* Autoplay tracks enqueuing too early
* Fix equalizer filter string for ffmpeg
* Unnecessarily large minimum window width for pages with tracklist
* Use sort tags for sorting artist discography by album name (OpenSubsonic only)
* For Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case
* Fix Now Playing background dissolve animation when next track has same cover art as previous`
* Crash in playback engine during time position update
* Clearing cache did not clear in-memory cache
* Normalize server URLs before connecting
* Race condition around context cancel func
* Occasional momentary playback when loading saved play queue
* Fix content not loading on startup until window focused`
)