prepare for 0.9.0 release

This commit is contained in:
Drew Weymouth
2024-01-27 08:04:06 -08:00
parent ff532a2446
commit 126de719e4
4 changed files with 43 additions and 16 deletions
+12 -6
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.8.2"
AppVersion = "0.9.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,13 +13,19 @@ const (
)
var (
WhatsAdded = ``
WhatsAdded = `
## Added
* Allow reordering of tracks in the play queue
* Highlight the icon of the current page's navigation button (thanks @natilou!)
* Show release type in album page header (for OpenSubsonic servers)
* Setting to save and reload play queue on exit/startup
* Use most recent playlist as default in "Add to playlist" dialog
* Option to show desktop notifications on track change
* Added icons to context menu items
`
WhatsFixed = `
## Fixed
* Occasional crash when showing album info dialog, especially on Jellyfin
* Unable to connect to Airsonic servers not supporting latest Subsonic API
* Long album titles overflow the bounds of info dialog
* ReplayGain "prevent clipping" setting was reversed
* OpenGL startup error on some hardware
`
)