prepare for 0.21.1 release

This commit is contained in:
Drew Weymouth
2026-04-05 13:25:37 -07:00
parent 8636e54c3a
commit 7db96e8056
5 changed files with 32 additions and 42 deletions
+9 -25
View File
@@ -63,45 +63,29 @@
</screenshots>
<releases>
<release date="2026-03-11" version="0.21.0">
<release date="2026-04-05" version="0.21.1">
<description>
<p>
Version 0.21.0 of Supersonic
Version 0.21.1 of Supersonic
</p>
<p>
Added
</p>
<ul>
<li>Shuffle play queue</li>
<li>All Tracks tab on Artist page</li>
<li>Equalizer improvements: 10-band EQ option, AutoEQ headphone profiles, preset management</li>
<li>Song Radio context menu item on play queue</li>
<li>Display radio stream ICY metadata</li>
<li>-rate-current CLI option to rate the currently playing track</li>
<li>-reload-theme CLI flag to re-apply the current theme</li>
<li>Updated Polish and Chinese translations</li>
</ul>
<p>
Changed
</p>
<ul>
<li>Shuffle and repeat controls moved into main player controls</li>
<li>Waveform seekbar disabled by default</li>
<li>Use JSON instead of XML in Subsonic API requests</li>
<li>Turkish translation</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>Crash in playback engine during time position update</li>
<li>Clearing cache did not clear in-memory cache</li>
<li>Normalize server URLs before connecting</li>
<li>Race condition around context cancel func</li>
<li>Occasional momentary playback when loading saved play queue</li>
<li>Fix content not loading on startup until window focused</li>
<li>Regression: library not loading for Funkwhale servers</li>
<li>Fix crash when playing track with index shorter than previous queue length while shuffling</li>
<li>Fix intermittent crash when creating share URLs</li>
<li>Close to dock behavior for MacOS</li>
<li>Regression: Sorting artist discography not working</li>
<li>Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature</li>
</ul>
</description>
+8 -15
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.21.0"
AppVersion = "0.21.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,21 +15,14 @@ const (
var (
WhatsAdded = `
## Added
* 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`
* Turkish translation`
WhatsFixed = `
## Fixed
* 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`
* Regression: library not loading for Funkwhale servers
* Fix crash when playing track with index shorter than previous queue length while shuffling
* Fix intermittent crash when creating share URLs
* Close to dock behavior for MacOS
* Regression: Sorting artist discography not working
* Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature`
)