prepare for 0.18.0 release

This commit is contained in:
Drew Weymouth
2025-08-12 08:30:02 -07:00
parent 22ae0baa37
commit 60d1e78fcc
5 changed files with 31 additions and 37 deletions
+9 -15
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.17.0"
AppVersion = "0.18.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,19 +15,13 @@ const (
var (
WhatsAdded = `
## Added
* Group releases by Release Type on artist pages
* Allow browsing a specific music library for servers that expose multiple libraries
* New translations: Korean and Russian
* Some updates to other translations`
* Make play button on Albums page configurable to shuffle or play in order
* Add sample rate, bit depth, and channel count to track info dialog
* 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 = `
## Fixed
* Light button colors in a light theme turn dark when hovering
* Use full date instead of year to sort artist discography
* Improved rendering of text entry borders when using fractional pixel scaling
* Windows: occasional crashes at startup
* Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
* Windows: TLS versions above 1.2 not supported by shipped libmpv-2
* Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
* Windows: some radio stream URLs wouldn't play`
WhatsFixed = ``
)