diff --git a/CHANGELOG.md b/CHANGELOG.md index 12281f8..65fd291 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [0.10.1] - 2024-04-21 + +### Fixed +- [#369](https://github.com/dweymouth/supersonic/issues/369) Crashing when trying to add a new server +- [#370](https://github.com/dweymouth/supersonic/issues/370) Lyrics don't refresh when playing next song +- What's New dialog wasn't showing when launching updated version +- Crash on exit when saving play queue to server and no track playing + ## [0.10.0] - 2024-04-17 ### Added diff --git a/Makefile b/Makefile index 9cc8c25..069f952 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ icon_path = ./res/appicon-512.png app_name = Supersonic -app_version = 0.10.0 +app_version = 0.10.1 build: go build diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 612443e..2fd654c 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,35 +61,20 @@ - +

- Version 0.10.0 of Supersonic + Version 0.10.1 of Supersonic

-

- Added -

-
    -
  • 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

    -
  • 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
  • +
  • Crashing when trying to add a new server
  • +
  • Lyrics don't refresh when playing next song
  • +
  • What's New dialog wasn't showing when launching updated version
  • +
  • Crash on exit when saving play queue to server and no track playing
diff --git a/res/metadata.go b/res/metadata.go index f9a7313..c6827cb 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.10.0" + AppVersion = "0.10.1" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -13,24 +13,13 @@ const ( ) var ( - WhatsAdded = ` -## Added -* 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 -` + WhatsAdded = `` WhatsFixed = ` ## Fixed -* 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 +* Crashing when trying to add a new server +* Lyrics don't refresh when playing next song +* What's New dialog wasn't showing when launching updated version +* Crash on exit when saving play queue to server and no track playing ` )