prepare for 0.13.1 release

This commit is contained in:
Drew Weymouth
2024-08-20 08:34:58 -07:00
parent 62803b9f09
commit 91964d9608
5 changed files with 32 additions and 40 deletions
+13 -18
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.13.0"
AppVersion = "0.13.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,24 +15,19 @@ const (
var (
WhatsAdded = `
## Added
* 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)`
* New translations: French, Polish, Portuguese (Brazillian), Romanian, Spanish
* Add tool tips to buttons and truncated labels
* Remember the "skip duplicate tracks" setting when adding tracks to playlists
* Switch sorting on All Tracks page to recently added`
WhatsFixed = `
## Fixed
* 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)`
* Custom themes didn't work on Windows
* Pop up play queue crashing on Windows
* Fixed "jumpy" scrolling on MacOS
* Window sometimes misdrawing on startup for Linux (even better fix than last time)
* Crash when rendering certain bitmap fonts
* Fixed some more memory leaks from communicating with MPV
* Missing space in error dialog text for sharing
* Play queue sometimes not saving on exit`
)