prepare for 0.19.0 release

This commit is contained in:
Drew Weymouth
2025-10-26 09:26:44 -07:00
parent d6e44974e9
commit 35b27432a5
5 changed files with 47 additions and 27 deletions
+18
View File
@@ -1,5 +1,23 @@
# Change Log # Change Log
## [0.19.0]
### Added
- [#732](https://github.com/dweymouth/supersonic/pull/732) Add toggleable side bar play queue
- [#724](https://github.com/dweymouth/supersonic/pull/724) Add a setting to skip one-star tracks or tracks with specific keyword when shuffling
- [#716](https://github.com/dweymouth/supersonic/issues/716) Add a Last Played column to tracklists
- [#714](https://github.com/dweymouth/supersonic/issues/714) Add a Create Playlist button to the playlists page
- [#579](https://github.com/dweymouth/supersonic/issues/579) Save play queue on all queue changes rather than on shutdown
- Left and Right keybindings for seeking back/forward 10 sec
### Fixed
- [#737](https://github.com/dweymouth/supersonic/issues/737) Peak Meter visualization crashing with custom themes
- [#735](https://github.com/dweymouth/supersonic/issues/735) Adjust spacing for rating/favorite widget on Now Playing page
- [#729](https://github.com/dweymouth/supersonic/issues/729) Occasional crashing on lyrics viewer
- [#414](https://github.com/dweymouth/supersonic/issues/414) Jellyfin M3U playlists not showing up
- Occasional hangs when loading artist pages
- Improved LrcLib lyrics fetching with unknown album or artist name
## [0.18.1] ## [0.18.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.18.1" Version = "0.19.0"
[LinuxAndBSD] [LinuxAndBSD]
Categories = ["Audio", "AudioVideo"] Categories = ["Audio", "AudioVideo"]
+14 -13
View File
@@ -63,33 +63,34 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2025-09-13" version="0.18.1"> <release date="2025-10-26" version="0.19.0">
<description> <description>
<p> <p>
Version 0.18.1 of Supersonic Version 0.19.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Save and use the most recently selected music library when re-launching app</li> <li>Toggleable side bar play queue</li>
<li>Add Artists to the supported list of startup pages</li> <li>New setting to skip one-star tracks or tracks with specific keyword when shuffling</li>
<li>New Last Played column for tracklists</li>
<li>Create Playlist button added to the playlists page</li>
<li>Save play queue on all queue changes rather than on shutdown</li>
<li>Left and Right keybindings for seeking back/forward 10 sec</li>
</ul> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Occasionally crashing on Linux when monitors go idle</li> <li>Peak Meter visualization crashing with custom themes</li>
<li>AppImage: failing to start due to "No GLXFBConfigs returned</li> <li>Adjust spacing for rating/favorite widget on Now Playing page</li>
<li>AppImage: failing to start on openSUSE-Tumbleweed and CachyOS</li> <li>Occasional crashing on lyrics viewer</li>
<li>Rework format for now playing status line</li> <li>Jellyfin M3U playlists not showing up</li>
<li>Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)</li> <li>Occasional hangs when loading artist pages</li>
<li>Fail to start on Windows ARM64 or older x64 CPUs</li> <li>Improved LrcLib lyrics fetching with unknown album or artist name</li>
<li>Search results limited to 20 items</li>
<li>Transcoding not working with Jellyfin</li>
<li>Crashing on "Shuffle albums" if fewer than 20 albums available</li>
</ul> </ul>
</description> </description>
+13 -12
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.18.1" AppVersion = "0.19.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,18 +15,19 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Save and use the most recently selected music library when re-launching app * Toggleable side bar play queue
* Add Artists to the supported list of startup pages` * New setting to skip one-star tracks or tracks with specific keyword when shuffling
* New Last Played column for tracklists
* Create Playlist button added to the playlists page
* Save play queue on all queue changes rather than on shutdown
* Left and Right keybindings for seeking back/forward 10 sec`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Occasionally crashing on Linux when monitors go idle * Peak Meter visualization crashing with custom themes
* AppImage: failing to start due to "No GLXFBConfigs returned * Adjust spacing for rating/favorite widget on Now Playing page
* AppImage: failing to start on openSUSE-Tumbleweed and CachyOS * Occasional crashing on lyrics viewer
* Rework format for now playing status line * Jellyfin M3U playlists not showing up
* Silenty failing to add large number of tracks to playlist (OpenSubsonic servers) * Occasional hangs when loading artist pages
* Fail to start on Windows ARM64 or older x64 CPUs * Improved LrcLib lyrics fetching with unknown album or artist name`
* Search results limited to 20 items
* Transcoding not working with Jellyfin
* Crashing on "Shuffle albums" if fewer than 20 albums available`
) )
+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.18.1" #define MyAppVersion "0.19.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"