diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ffea91..0a868ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [0.7.0] - 2023-11-07 + +### Added +- [#263](https://github.com/dweymouth/supersonic/issues/263) "Quick Search" popup dialog to search entire library from any page +- [#245](https://github.com/dweymouth/supersonic/issues/245) UI Refresh and misc. internal improvements from moving to Fyne 2.4 +- New [custom theme](https://github.com/dweymouth/supersonic/wiki/Custom-Themes) colors - Hyperlink and PageHeader +- Added support for displaying WEBP images (Thanks @adamantike!) +- Added playback setting to force disable server transcoding + +### Fixed +- [#270](https://github.com/dweymouth/supersonic/issues/270) Crash when removing from the currently playing track to the end of the play queue +- UI hang if playback slow to begin after clicking on green play button on cover images + ## [0.6.0] - 2023-10-23 ### Added diff --git a/Makefile b/Makefile index 5bdf134..b7681f4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ icon_path = ./res/appicon-512.png app_name = Supersonic -app_version = 0.6.0 +app_version = 0.7.0 build: go build diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 59f1cdb..c490402 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -61,21 +61,29 @@ - +

- Version 0.6.0 of Supersonic + Version 0.7.0 of Supersonic

Added

    -
  • Support for multi-valued artists and genres through the new OpenSubsonic API extensions
  • -
  • Mac OS media center integration incl. media key support
  • -
  • Sorting now enabled on genres and playlists list views
  • -
  • Sortable tracklist columns provide a visual indication on hover
  • -
  • "Rescan library" option added to settings menu to trigger a library scan on the server
  • +
  • "Quick Search" popup dialog to search entire library from any page
  • +
  • UI Refresh and misc. internal improvements from moving to Fyne 2.4
  • +
  • New custom theme colors - Hyperlink and PageHeader
  • +
  • Added support for displaying WEBP images
  • +
  • Added playback setting to force disable server transcoding
  • +
+ +

+ Fixed +

+
    +
  • Crash when removing from the currently playing track to the end of the play queue
  • +
  • UI hang if playback slow to begin after clicking on green play button on cover images
diff --git a/res/metadata.go b/res/metadata.go index 59468b5..fd031d5 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -8,7 +8,7 @@ import ( const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.6.0" + AppVersion = "0.7.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic"