Prepare for 0.11.0 release

This commit is contained in:
Drew Weymouth
2024-06-05 11:23:12 -07:00
parent 1f761f2213
commit 08361fcfe0
4 changed files with 44 additions and 15 deletions
+19 -6
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.10.1"
AppVersion = "0.11.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,13 +13,26 @@ const (
)
var (
WhatsAdded = ``
WhatsAdded = `
## Added
* Automatically load fonts from the OS as needed to display CJK and other scripts
* Synced lyrics support and Jellyfin lyrics support
* LrcLib.net as a backup lyric source (disable in config file if desired)
* Improve UX of Add to Playlist dialog
* Show track thumbnails in tracklist views
* Support for internet radio stations for Subsonic servers
* New "option button" to right of current track title to bring up action menu
* Ctrl+{backspace/delete} to remove words in text inputs
* New portable mode option
* Improves performance and behavior of Random albums sort with upcoming Navidrome releases
* Dynamic gradient background on Now Playing page
`
WhatsFixed = `
## Fixed
* 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
* Last track occasionally missing in album view depending on window size
* Album filter button disappearing when restoring pages from history
* Artist radio button sometimes plays radio for wrong artist
* Clicking Home button doesn't automatically refresh page
`
)