diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b41492..12de2b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.15.1] + +### Fixed +- [#591](https://github.com/dweymouth/supersonic/pull/591) Fix crashing on playback on Windows +- Fix crashing when clicking on album filters button + ## [0.15.0] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index 2fb7876..cc5c35c 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.15.0" + Version = "0.15.1" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index d796b5d..06b3510 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,29 +63,18 @@ - +

- Version 0.15.0 of Supersonic + Version 0.15.1 of Supersonic

-

- Added -

-
    -
  • Add ability to cast playback to DLNA devices
  • -
  • Add ability to search tracks within playlist
  • -
  • Add context menu actions to items in "Search Everywhere" dialog
  • -
  • Make server requests timeout configurable and increase default timeout
  • -
  • New overlay animation when showing full size covers
  • -
-

Fixed

    -
  • Wrong track scrobbled when skipping next
  • -
  • Regression: searching the "All Tracks" page skips some results
  • +
  • Fix crashing on playback on Windows
  • +
  • Fix crashing when clicking on album filters button
diff --git a/res/metadata.go b/res/metadata.go index 75b3298..2a4172e 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.15.0" + AppVersion = "0.15.1" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -13,16 +13,10 @@ const ( ) var ( - WhatsAdded = ` -## Added -* Add ability to cast playback to DLNA devices -* Add ability to search tracks within playlist -* Add context menu actions to items in "Search Everywhere" dialog -* Make server requests timeout configurable and increase default timeout -* New overlay animation when showing full size covers` + WhatsAdded = `` WhatsFixed = ` ## Fixed -* Wrong track scrobbled when skipping next -* Regression: searching the "All Tracks" page skips some results` +* Fix crashing on playback on Windows +* Fix crashing when clicking on album filters button` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index 56744d3..705294f 100644 --- a/win_inno_installscript.iss +++ b/win_inno_installscript.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Supersonic" -#define MyAppVersion "0.15.0" +#define MyAppVersion "0.15.1" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"