From f5ec18562db0b015d420fcc95b7fcb8f4c511121 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Wed, 17 Apr 2024 08:43:32 -0700 Subject: [PATCH] prepare for 0.10.0 release --- CHANGELOG.md | 19 ++++++++++++++ Makefile | 2 +- ...io.github.dweymouth.supersonic.appdata.xml | 25 +++++++++++-------- res/metadata.go | 23 ++++++++++------- 4 files changed, 49 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2cb7f3..12281f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [0.10.0] - 2024-04-17 + +### Added +- [#128](https://github.com/dweymouth/supersonic/issues/128) Support mouse back and forward buttons for navigation +- [#238](https://github.com/dweymouth/supersonic/issues/238) Redesigned Now Playing page with large cover art and lyrics +- [#303](https://github.com/dweymouth/supersonic/issues/303) Add context menu entry to create sharing URLs (Subsonic servers only) +- [#337](https://github.com/dweymouth/supersonic/issues/337) Add option to load/save play queue to Subsonic servers instead of locally +- [#350](https://github.com/dweymouth/supersonic/issues/350) Add option to shuffle artist's discography by albums or tracks +- [#351](https://github.com/dweymouth/supersonic/issues/351) Show original and reissue date for albums if available (OpenSubsonic servers) +- [#352](https://github.com/dweymouth/supersonic/pull/352) Add "Song radio" option to tracklist context menus +- [#361](https://github.com/dweymouth/supersonic/issues/361) Add "Play next" option to context menus +- [#366](https://github.com/dweymouth/supersonic/pull/366) Add sorting options to Artists page + +### Fixed +- [#330](https://github.com/dweymouth/supersonic/issues/330) Can't reorder track in play queue more than once +- [#345](https://github.com/dweymouth/supersonic/issues/345) Playlist's comment text doesn't wrap +- [#346](https://github.com/dweymouth/supersonic/issues/346) Pressing down arrow on tracklist with few tracks could cause some to be hidden +- [#364](https://github.com/dweymouth/supersonic/issues/364) "Move down" option in play queue context menu was moving to bottom + ## [0.9.1] - 2024-02-25 ### Added diff --git a/Makefile b/Makefile index fb0cccb..9cc8c25 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ icon_path = ./res/appicon-512.png app_name = Supersonic -app_version = 0.9.1 +app_version = 0.10.0 build: go build diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 3bfc63e..612443e 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,30 +61,35 @@ - +

- Version 0.9.1 of Supersonic + Version 0.10.0 of Supersonic

Added

    -
  • 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
  • +
  • Support mouse back and forward buttons for navigation
  • +
  • Redesigned Now Playing page with large cover art and lyrics
  • +
  • Add context menu entry to create sharing URLs (Subsonic servers only)
  • +
  • Add option to load/save play queue to Subsonic servers instead of locally
  • +
  • Add option to shuffle artist's discography by albums or tracks
  • +
  • Show original and reissue date for albums if available (OpenSubsonic servers)
  • +
  • Add "Song radio" option to tracklist context menus
  • +
  • Add "Play next" option to context menus
  • +
  • Add sorting options to Artists page

Fixed

    -
  • 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
  • +
  • Can't reorder track in play queue more than once
  • +
  • Playlist's comment text doesn't wrap
  • +
  • Pressing down arrow on tracklist with few tracks could cause some to be hidden
  • +
  • "Move down" option in play queue context menu was moving to bottom
diff --git a/res/metadata.go b/res/metadata.go index 3b176be..f9a7313 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.9.1" + AppVersion = "0.10.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,17 +15,22 @@ const ( var ( WhatsAdded = ` ## Added -* 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 +* Support mouse back and forward buttons for navigation +* Redesigned Now Playing page with large cover art and lyrics +* Add context menu entry to create sharing URLs (Subsonic servers only) +* Add option to load/save play queue to Subsonic servers instead of locally +* Add option to shuffle artist's discography by albums or tracks +* Show original and reissue date for albums if available (OpenSubsonic servers) +* Add "Song radio" option to tracklist context menus +* Add "Play next" option to context menus +* Add sorting options to Artists page ` WhatsFixed = ` ## Fixed -* 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 +* Can't reorder track in play queue more than once +* Playlist's comment text doesn't wrap +* Pressing down arrow on tracklist with few tracks could cause some to be hidden +* "Move down" option in play queue context menu was moving to bottom ` )