prepare for 0.18.1 release

This commit is contained in:
Drew Weymouth
2025-09-13 13:10:13 -07:00
parent fc2f7b9459
commit e2ccc8b446
5 changed files with 52 additions and 20 deletions
+17
View File
@@ -1,5 +1,22 @@
# Change Log # Change Log
## [0.18.1]
### Added
- [#696](https://github.com/dweymouth/supersonic/issues/696) Save and use the most recently selected music library when re-launching app
- [#697](https://github.com/dweymouth/supersonic/issues/697) Add Artists to the supported list of startup pages
### Fixed
- [#412](https://github.com/dweymouth/supersonic/issues/412) Occasionally crashing on Linux when monitors go idle
- [#419](https://github.com/dweymouth/supersonic/issues/419) AppImage: failing to start due to "No GLXFBConfigs returned"
- [#658](https://github.com/dweymouth/supersonic/issues/658) Rework format for now playing status line
- [#664](https://github.com/dweymouth/supersonic/issues/664) AppImage: failing to start on openSUSE-Tumbleweed and CachyOS
- [#423](https://github.com/dweymouth/supersonic/issues/423) Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)
- [#666](https://github.com/dweymouth/supersonic/issues/666) Fail to start on Windows ARM64 or older x64 CPUs
- [#690](https://github.com/dweymouth/supersonic/issues/690) Search results limited to 20 items
- [#691](https://github.com/dweymouth/supersonic/issues/691) Transcoding not working with Jellyfin
- [#703](https://github.com/dweymouth/supersonic/issues/703) Crashing on "Shuffle albums" if fewer than 20 albums available
## [0.18.0] ## [0.18.0]
### 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.0" Version = "0.18.1"
[LinuxAndBSD] [LinuxAndBSD]
Categories = ["Audio", "AudioVideo"] Categories = ["Audio", "AudioVideo"]
+19 -9
View File
@@ -63,23 +63,33 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2025-08-12" version="0.18.0"> <release date="2025-09-13" version="0.18.1">
<description> <description>
<p> <p>
Version 0.18.0 of Supersonic Version 0.18.1 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Make play button on Albums page configurable to shuffle or play in order</li> <li>Save and use the most recently selected music library when re-launching app</li>
<li>Add sample rate, bit depth, and channel count to track info dialog</li> <li>Add Artists to the supported list of startup pages</li>
<li>Add waveform seekbar</li> </ul>
<li>Add CLI commands to start minimized, and to show/raise the app window</li>
<li>Add CLI commands to search and play albums, tracks, and playlists</li> <p>
<li>Add player control buttons to Windows taskbar thumbnail</li> Fixed
<li>Add ability to stop playback after current track finishes</li> </p>
<ul>
<li>Occasionally crashing on Linux when monitors go idle</li>
<li>AppImage: failing to start due to "No GLXFBConfigs returned</li>
<li>AppImage: failing to start on openSUSE-Tumbleweed and CachyOS</li>
<li>Rework format for now playing status line</li>
<li>Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)</li>
<li>Fail to start on Windows ARM64 or older x64 CPUs</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>
+14 -9
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.18.0" AppVersion = "0.18.1"
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,13 +15,18 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Make play button on Albums page configurable to shuffle or play in order * Save and use the most recently selected music library when re-launching app
* Add sample rate, bit depth, and channel count to track info dialog * Add Artists to the supported list of startup pages`
* Add waveform seekbar
* Add CLI commands to start minimized, and to show/raise the app window
* Add CLI commands to search and play albums, tracks, and playlists
* Add player control buttons to Windows taskbar thumbnail
* Add ability to stop playback after current track finishes`
WhatsFixed = `` WhatsFixed = `
## Fixed
* Occasionally crashing on Linux when monitors go idle
* AppImage: failing to start due to "No GLXFBConfigs returned
* AppImage: failing to start on openSUSE-Tumbleweed and CachyOS
* Rework format for now playing status line
* Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)
* Fail to start on Windows ARM64 or older x64 CPUs
* 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.0" #define MyAppVersion "0.18.1"
#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"