From 7fcbfdd456e55242e76fb760155b9a2a0a6752ae Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Sun, 28 Jul 2024 15:57:08 -0700 Subject: [PATCH] prepare for 0.13.0 release --- CHANGELOG.md | 2 +- ...io.github.dweymouth.supersonic.appdata.xml | 31 ++++++++++++------- res/metadata.go | 31 +++++++++++-------- 3 files changed, 38 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ebc8d1..174c2179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [0.13.0] - 2024-07-29 +## [0.13.0] - 2024-07-28 ### Added - [#65](https://github.com/dweymouth/supersonic/issues/65) Add support for translations, and add Chinese and Italian translations diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 27d8cd38..9cbc4284 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,32 +61,39 @@ - +

- Version 0.12.0 of Supersonic + Version 0.13.0 of Supersonic

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)

Fixed

    -
  • 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
  • -
  • Window occasionally misrendered into smaller space on opening for Linux over xwayland
  • -
  • 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)
diff --git a/res/metadata.go b/res/metadata.go index 4f05fa61..1ff767af 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -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)` )