From 1914821283323d4fd10a298bd19e8f35f8cb8c76 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Sun, 25 Feb 2024 08:33:07 -0800 Subject: [PATCH] prepare for 0.9.1 release --- CHANGELOG.md | 14 +++++++++++++ Makefile | 2 +- ...io.github.dweymouth.supersonic.appdata.xml | 20 +++++++++---------- res/metadata.go | 18 ++++++++--------- 4 files changed, 34 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52d08d4c..f2cb7f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [0.9.1] - 2024-02-25 + +### Added +- [#327](https://github.com/dweymouth/supersonic/issues/327) Show visual loading cue when searching and no results yet +- [#22](https://github.com/dweymouth/supersonic/issues/22) Arrow key scrolling and focus keyboard traversal to grid and list views +- Ctrl+Q keyboard shortcut to quit app on Windows and Linux + +### Fixed +- A few MPRIS bugs (thanks @adamantike!) +- [#319](https://github.com/dweymouth/supersonic/issues/319) Show modal dialog when connecting to server to block UI interaction which could cause crash +- [#321](https://github.com/dweymouth/supersonic/issues/321) High CPU use when certain dialogs were shown +- [#326](https://github.com/dweymouth/supersonic/issues/326) Make tracklist widget more efficient +- Lower CPU use when text entry fields are focused + ## [0.9.0] - 2024-01-27 ### Added diff --git a/Makefile b/Makefile index e9180614..fb0cccb4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ icon_path = ./res/appicon-512.png app_name = Supersonic -app_version = 0.9.0 +app_version = 0.9.1 build: go build diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 533b46a6..3bfc63e2 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,30 +61,30 @@ - +

- Version 0.9.0 of Supersonic + Version 0.9.1 of Supersonic

Added

    -
  • Allow reordering of tracks in the play queue
  • -
  • Highlight the icon of the current page's navigation button
  • -
  • Show release type in album page header (for OpenSubsonic servers)
  • -
  • Setting to save and reload play queue on exit/startup
  • -
  • Use most recent playlist as default in "Add to playlist" dialog
  • -
  • Option to show desktop notifications on track change
  • -
  • Added icons to context menu items
  • +
  • Show visual loading cue when searching and no results yet
  • +
  • Arrow key scrolling and focus keyboard traversal to grid and list views
  • +
  • Ctrl+Q keyboard shortcut to quit app on Windows and Linux

Fixed

    -
  • OpenGL startup error on some hardware
  • +
  • A few MPRIS bugs
  • +
  • Show modal dialog when connecting to server to block UI interaction which could cause crash
  • +
  • High CPU use when certain dialogs were shown
  • +
  • Make tracklist widget more efficient
  • +
  • Lower CPU use when text entry fields are focused
diff --git a/res/metadata.go b/res/metadata.go index 5d3b0459..3b176be0 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.9.0" + AppVersion = "0.9.1" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,17 +15,17 @@ const ( var ( WhatsAdded = ` ## Added -* Allow reordering of tracks in the play queue -* Highlight the icon of the current page's navigation button (thanks @natilou!) -* Show release type in album page header (for OpenSubsonic servers) -* Setting to save and reload play queue on exit/startup -* Use most recent playlist as default in "Add to playlist" dialog -* Option to show desktop notifications on track change -* Added icons to context menu items +* Show visual loading cue when searching and no results yet +* Arrow key scrolling and focus keyboard traversal to grid and list views +* Ctrl+Q keyboard shortcut to quit app on Windows and Linux ` WhatsFixed = ` ## Fixed -* OpenGL startup error on some hardware +* A few MPRIS bugs (thanks @adamantike!) +* Show modal dialog when connecting to server to block UI interaction which could cause crash +* High CPU use when certain dialogs were shown +* Make tracklist widget more efficient +* Lower CPU use when text entry fields are focused ` )