prepare for 0.17.0 release

This commit is contained in:
Drew Weymouth
2025-07-16 07:34:55 -07:00
parent 1e9b6cb412
commit f8d64c7fa3
5 changed files with 46 additions and 18 deletions
+13 -8
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.16.0"
AppVersion = "0.17.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,14 +15,19 @@ const (
var (
WhatsAdded = `
## Added
* Add click-to-seek to lyrics viewer for synced lyrics
* Allow customization of grid card size
* Add setting to request transcoding to a specific format/bitrate from server
* Japanese translation improvements`
* 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`
WhatsFixed = `
## Fixed
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
* Crashing with custom themes that change the Primary color
* Incorrect tracks removed from playlist if removing from searched view`
* 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`
)