diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d2478..94f2946 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [0.8.1] - 2023-12-06 + +### Fixed +- [#284](https://github.com/dweymouth/supersonic/issues/284) Artist Radio on Jellyfin not generating a fresh mix if clicked a second time +- [#283](https://github.com/dweymouth/supersonic/issues/283) On Jellyfin, a long artist biography could overflow the page header +- [#288](https://github.com/dweymouth/supersonic/issues/288) Systray icon missing on Linux since 0.7.0 + ## [0.8.0] - 2023-11-15 ### Added diff --git a/Makefile b/Makefile index be421e4..cd7602a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ icon_path = ./res/appicon-512.png app_name = Supersonic -app_version = 0.8.0 +app_version = 0.8.1 build: go build diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index bbeebda..874b146 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,30 +61,19 @@ - +

- Version 0.8.0 of Supersonic + Version 0.8.1 of Supersonic

-

- Added -

-
    -
  • Add support for connecting to Jellyfin servers
  • -
  • Add "Auto" ReplayGain option to auto-choose between Track and Album mode
  • -
  • Add experimental setting for changing UI scaling
  • -
-

Fixed

    -
  • Crash when repeatedly searching the All Tracks page quickly
  • -
  • What's New dialog sometimes continuing to re-show on subsequent launches
  • -
  • Config settings sometimes not being saved due to abnormal exits
  • -
  • Don't crash with zero-track albums or tracks with no artists
  • -
  • Slightly improved the time it takes to check server connectivity
  • +
  • Artist Radio on Jellyfin not generating a fresh mix if clicked a second time
  • +
  • On Jellyfin, a long artist biography could overflow the page header
  • +
  • Systray icon missing on Linux since 0.7.0
diff --git a/res/metadata.go b/res/metadata.go index d51406e..e3984aa 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.8.0" + AppVersion = "0.8.1" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -12,17 +12,12 @@ const ( ) var ( - WhatsAdded = ` -## Added -* Add support for connecting to Jellyfin servers -* Add "Auto" ReplayGain option to auto-choose between Track and Album mode -* Add experimental setting for changing UI scaling` + WhatsAdded = `` WhatsFixed = ` ## Fixed -* Crash when repeatedly searching the All Tracks page quickly -* What's New dialog sometimes continuing to re-show on subsequent launches -* Config settings sometimes not being saved due to abnormal exits -* Don't crash with zero-track albums or tracks with no artists -* Slightly improved the time it takes to check server connectivity` +* Artist Radio on Jellyfin not generating a fresh mix if clicked a second time +* On Jellyfin, a long artist biography could overflow the page header +* Systray icon missing on Linux since 0.7.0 +` )