prepare for 0.20.1 release

This commit is contained in:
Drew Weymouth
2026-01-31 09:11:12 -08:00
parent 1e73073032
commit 4bb5442ad1
5 changed files with 52 additions and 33 deletions
+21
View File
@@ -1,5 +1,26 @@
# Change Log
## [0.20.1]
### Added
- Improved translations for Chinese, Japanese, Italian
- [#814](https://github.com/dweymouth/supersonic/pull/814) Setting to disable fade out on pause
### Changed
- [#798](https://github.com/dweymouth/supersonic/issues/798) Ignore SSL validation setting migrated to per-server option
### Fixed
- [#614](https://github.com/dweymouth/supersonic/issues/614) Some uPnP devices not recognized
- [#809](https://github.com/dweymouth/supersonic/issues/809) Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00
- [#804](https://github.com/dweymouth/supersonic/issues/804) Regression in peak meter animation smoothness
- Some optimizations of tracklist rendering
- [#810](https://github.com/dweymouth/supersonic/issues/810) Autoplay tracks enqueuing too early
- [#834](https://github.com/dweymouth/supersonic/pull/834) Fix equalizer filter string for ffmpeg
- [#813](https://github.com/dweymouth/supersonic/issues/813) Unnecessarily large minimum window width for pages with tracklist
- [#485](https://github.com/dweymouth/supersonic/discussions/485) Use sort tags for sorting artist discography by album name (OpenSubsonic only)
- [#384](https://github.com/dweymouth/supersonic/issues/384) 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
## [0.20.0]
### Added
+1 -1
View File
@@ -1,7 +1,7 @@
[Details]
Icon = "res/appicon-512.png"
Name = "Supersonic"
Version = "0.20.0"
Version = "0.20.1"
[LinuxAndBSD]
Categories = ["Audio", "AudioVideo"]
+15 -16
View File
@@ -63,36 +63,35 @@
</screenshots>
<releases>
<release date="2026-01-10" version="0.20.0">
<release date="2026-01-31" version="0.20.1">
<description>
<p>
Version 0.20.0 of Supersonic
Version 0.20.1 of Supersonic
</p>
<p>
Added
</p>
<ul>
<li>Quickly fade out audio when pausing</li>
<li>Add collapsed/compact view for page headers</li>
<li>Add option to prevent screensaver or screen sleep on Now Playing page</li>
<li>Add lyrics tab to sidebar</li>
<li>Add additional tracklist columns for Genre, Album Artist, File Type, Date Added</li>
<li>Show year on Now Playing page</li>
<li>Option to round image corners throughout app</li>
<li>Option to used blurred album cover for background of Now Playing page</li>
<li>Left click on system tray icon raises app window</li>
<li>Button in Advanced tab of settings window to clear caches</li>
<li>Seeking Next while playing the last track in queue now cycles around back to the beginning</li>
<li>Behavior and naming of "Stop after current track" changed to "Pause after current track"</li>
<li>Improved translations for Chinese, Japanese, Italian</li>
<li>Setting to disable fade out on pause</li>
<li>Ignore SSL validation setting migrated to per-server option</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>LrcLib fetcher no longer crashes on tracks with no artist name</li>
<li>Windows now playing notifications are now silent, and include album cover</li>
<li>Some uPnP devices not recognized</li>
<li>Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00</li>
<li>Regression in peak meter animation smoothness</li>
<li>Some optimizations of tracklist rendering</li>
<li>Autoplay tracks enqueuing too early</li>
<li>Fix equalizer filter string for ffmpeg</li>
<li>Unnecessarily large minimum window width for pages with tracklist</li>
<li>Use sort tags for sorting artist discography by album name (OpenSubsonic only)</li>
<li>For Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case</li>
<li>Fix Now Playing background dissolve animation when next track has same cover art as previous</li>
</ul>
</description>
+14 -15
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.20.0"
AppVersion = "0.20.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,21 +15,20 @@ const (
var (
WhatsAdded = `
## Added
* Quickly fade out audio when pausing
* Add collapsed/compact view for page headers
* Add option to prevent screensaver or screen sleep on Now Playing page
* Add lyrics tab to sidebar
* Add additional tracklist columns for Genre, Album Artist, File Type, Date Added
* Show year on Now Playing page
* Option to round image corners throughout app
* Option to used blurred album cover for background of Now Playing page
* Left click on system tray icon raises app window
* Button in Advanced tab of settings window to clear caches
* Seeking Next while playing the last track in queue now cycles around back to the beginning
* Behavior and naming of "Stop after current track" changed to "Pause after current track"`
* Improved translations for Chinese, Japanese, Italian
* Setting to disable fade out on pause
* Ignore SSL validation setting migrated to per-server option`
WhatsFixed = `
## Fixed
* LrcLib fetcher no longer crashes on tracks with no artist name
* Windows now playing notifications are now silent, and include album cover`
* 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`
)
+1 -1
View File
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Supersonic"
#define MyAppVersion "0.20.0"
#define MyAppVersion "0.20.1"
#define MyAppPublisher "Drew Weymouth"
#define MyAppURL "https://github.com/dweymouth/supersonic"
#define MyAppExeName "Supersonic.exe"