prepare for 0.22.0 release

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Drew Weymouth
2026-07-13 08:34:51 -07:00
co-authored by Claude Sonnet 5
parent dd0477ebab
commit fae1b815bf
5 changed files with 67 additions and 19 deletions
+24
View File
@@ -1,5 +1,29 @@
# Change Log # Change Log
## [0.22.0]
### Added
- [#909](https://github.com/dweymouth/supersonic/issues/909) IPC endpoint for getting the current track/radio station
- [#910](https://github.com/dweymouth/supersonic/pull/910) Support for the OpenSubsonic `playbackReport` extension
- [#955](https://github.com/dweymouth/supersonic/pull/955) "All Tracks" option on the Startup page
- Cover art support for internet radio stations
- Updated Polish, Spanish, Greek, Turkish, and French translations
### Changed
- [#54](https://github.com/dweymouth/supersonic/issues/54) Migrate to Fyne 2.8, adding Wayland support
- [#958](https://github.com/dweymouth/supersonic/pull/958) Match window border color to app theme rather than OS theme
- [#803](https://github.com/dweymouth/supersonic/issues/803) Artist biography text now scrolls instead of being truncated
### Fixed
- [#560](https://github.com/dweymouth/supersonic/issues/560) UI freeze after switching workspaces on Wayland
- [#823](https://github.com/dweymouth/supersonic/issues/823) Segfault when clicking the tray icon on Wayland
- [#899](https://github.com/dweymouth/supersonic/issues/899) Crash/freeze when system keyring unlock dialog blocked the main event loop on startup
- [#740](https://github.com/dweymouth/supersonic/issues/740) Race condition when using an alternate hostname caused 401 auth errors
- [#917](https://github.com/dweymouth/supersonic/issues/917) UI scale setting not applied correctly when using a non-English language
- [#931](https://github.com/dweymouth/supersonic/issues/931) DLNA cast DIDL-Lite metadata missing artist, album, cover art, and `<res>` audio attributes
- Stale cover art and Now Playing background persisting on tracks without art
- Autoplay (similar songs) incorrectly enqueuing tracks while a radio station is playing
## [0.21.1] ## [0.21.1]
### Added ### Added
+1 -1
View File
@@ -1,7 +1,7 @@
[Details] [Details]
Icon = "res/appicon-512.png" Icon = "res/appicon-512.png"
Name = "Supersonic" Name = "Supersonic"
Version = "0.21.1" Version = "0.22.0"
[LinuxAndBSD] [LinuxAndBSD]
Categories = ["Audio", "AudioVideo"] Categories = ["Audio", "AudioVideo"]
+24 -9
View File
@@ -63,29 +63,44 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2026-04-05" version="0.21.1"> <release date="2026-07-13" version="0.22.0">
<description> <description>
<p> <p>
Version 0.21.1 of Supersonic Version 0.22.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Turkish translation</li> <li>IPC endpoint for getting the current track/radio station</li>
<li>Support for the OpenSubsonic playbackReport extension</li>
<li>"All Tracks" option on the Startup page</li>
<li>Cover art support for internet radio stations</li>
<li>Updated Polish, Spanish, Greek, Turkish, and French translations</li>
</ul>
<p>
Changed
</p>
<ul>
<li>Migrate to Fyne 2.8, adding Wayland support</li>
<li>Match window border color to app theme rather than OS theme</li>
<li>Artist biography text now scrolls instead of being truncated</li>
</ul> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Regression: library not loading for Funkwhale servers</li> <li>UI freeze after switching workspaces on Wayland</li>
<li>Fix crash when playing track with index shorter than previous queue length while shuffling</li> <li>Segfault when clicking the tray icon on Wayland</li>
<li>Fix intermittent crash when creating share URLs</li> <li>Crash/freeze when system keyring unlock dialog blocked the main event loop on startup</li>
<li>Close to dock behavior for MacOS</li> <li>Race condition when using an alternate hostname caused 401 auth errors</li>
<li>Regression: Sorting artist discography not working</li> <li>UI scale setting not applied correctly when using a non-English language</li>
<li>Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature</li> <li>DLNA cast DIDL-Lite metadata missing artist, album, cover art, and &lt;res&gt; audio attributes</li>
<li>Stale cover art and Now Playing background persisting on tracks without art</li>
<li>Autoplay incorrectly enqueuing tracks while a radio station is playing</li>
</ul> </ul>
</description> </description>
+17 -8
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.21.1" AppVersion = "0.22.0"
AppVersionTag = "v" + AppVersion AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml" ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic" GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,14 +15,23 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Turkish translation` * IPC endpoint for getting the current track/radio station
* Support for the OpenSubsonic playbackReport extension
* "All Tracks" option on the Startup page
* Cover art support for internet radio stations
* Updated Polish, Spanish, Greek, Turkish, and French translations
* Migrate to Fyne 2.8, adding Wayland support
* Match window border color to app theme rather than OS theme
* Artist biography text now scrolls instead of being truncated`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Regression: library not loading for Funkwhale servers * UI freeze after switching workspaces on Wayland
* Fix crash when playing track with index shorter than previous queue length while shuffling * Segfault when clicking the tray icon on Wayland
* Fix intermittent crash when creating share URLs * Crash/freeze when system keyring unlock dialog blocked the main event loop on startup
* Close to dock behavior for MacOS * Race condition when using an alternate hostname caused 401 auth errors
* Regression: Sorting artist discography not working * UI scale setting not applied correctly when using a non-English language
* Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature` * DLNA cast DIDL-Lite metadata missing artist, album, cover art, and <res> audio attributes
* Stale cover art and Now Playing background persisting on tracks without art
* Autoplay incorrectly enqueuing tracks while a radio station is playing`
) )
+1 -1
View File
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Supersonic" #define MyAppName "Supersonic"
#define MyAppVersion "0.21.1" #define MyAppVersion "0.22.0"
#define MyAppPublisher "Drew Weymouth" #define MyAppPublisher "Drew Weymouth"
#define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppURL "https://github.com/dweymouth/supersonic"
#define MyAppExeName "Supersonic.exe" #define MyAppExeName "Supersonic.exe"