prepare for 0.13.0 release

This commit is contained in:
Drew Weymouth
2024-07-28 15:57:08 -07:00
parent 45ac279693
commit 7fcbfdd456
3 changed files with 38 additions and 26 deletions
+18 -13
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.12.0"
AppVersion = "0.13.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,19 +15,24 @@ const (
var (
WhatsAdded = `
## Added
* Enable drag-and-drop reordering of tracks in the play queue and playlists
* Add command-line options to control playback
* Add option to show album years in grid views
* Include radio station results in Quick Search
* Better stringification of play times longer than 1 hour
* Add fallback logic for populating related tracks and artist top tracks if server returns none
`
* Add support for translations, and add Chinese and Italian translations
* Add a peak/RMS meter visualization
* Add track info dialog and context menu item
* Add support for Composer (new tracklist column, and row in Track Info dialog)
* Use artist sortName for sorting artist grid by name, if present
* Add button to sort artist discography by name or year (asc or desc)
* Prevent Windows from sleeping while music playing
* Add a new button below the volume control to show a pop-up play queue
* Add a config file option to disable SSL/TLS validation (useful for self-signed certificates)`
WhatsFixed = `
## Fixed
* Window occasionally misrendered into smaller space on opening for Linux over xwayland
* Add "Play next/later" options to the related tracks list on the Now Playing page
* Change wording of the Add/Edit server form to be less confusing
* Don't crash if server returns nil saved play queue but no Subsonic error
`
* Japanese and possibly other scripts not truncating properly in grid views
* Crash if navigating away from Artist page before cover image loaded
* Regression in not detecting dark/light mode for Linux
* Artist page not loading artist image for servers that don't support artist largeImageURL
* Memory leak when querying certain MPV properties
* Fixed handling of multiple instances of the same track in the play queue
* Improve metadata in Linux .desktop file
* Window occasionally misrendered into smaller space on opening for Linux over xwayland (more reliable fix than last release)`
)