prepare for 0.10.1 release

This commit is contained in:
Drew Weymouth
2024-04-21 09:18:52 -07:00
parent b49ab2cad1
commit 59dd4a76eb
4 changed files with 21 additions and 39 deletions
+6 -17
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.10.0"
AppVersion = "0.10.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,24 +13,13 @@ const (
)
var (
WhatsAdded = `
## Added
* Support mouse back and forward buttons for navigation
* Redesigned Now Playing page with large cover art and lyrics
* Add context menu entry to create sharing URLs (Subsonic servers only)
* Add option to load/save play queue to Subsonic servers instead of locally
* Add option to shuffle artist's discography by albums or tracks
* Show original and reissue date for albums if available (OpenSubsonic servers)
* Add "Song radio" option to tracklist context menus
* Add "Play next" option to context menus
* Add sorting options to Artists page
`
WhatsAdded = ``
WhatsFixed = `
## Fixed
* Can't reorder track in play queue more than once
* Playlist's comment text doesn't wrap
* Pressing down arrow on tracklist with few tracks could cause some to be hidden
* "Move down" option in play queue context menu was moving to bottom
* Crashing when trying to add a new server
* Lyrics don't refresh when playing next song
* What's New dialog wasn't showing when launching updated version
* Crash on exit when saving play queue to server and no track playing
`
)