diff --git a/CHANGELOG.md b/CHANGELOG.md index 12de2b5..475cb7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [0.15.2] + +### Added +- Improvements across a few translations +- [#605](https://github.com/dweymouth/supersonic/issues/605) BPM column added to tracklist +- Animate button overlays when mouse in/out of album grid +- Album grid play button now takes color from theme + +### Fixed +- [#507](https://github.com/dweymouth/supersonic/issues/507) Crashing when loading locally saved play queue with files deleted from server +- [#595](https://github.com/dweymouth/supersonic/issues/595),[#607](https://github.com/dweymouth/supersonic/issues/607) Occasionally crashing when removing tracks from quue via the pop-up queue +- [#602](https://github.com/dweymouth/supersonic/issues/602) Album info dialog wouldn't scroll long description text +- Regression: Peak meter was broken since 0.15.0 +- Playlist descriptions and track comments with newlines could overflow on top of other UI elements +- Remember scroll position when navigating the history back to an album or playlist page + ## [0.15.1] ### Fixed diff --git a/FyneApp.toml b/FyneApp.toml index cc5c35c..d94d67f 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.15.1" + Version = "0.15.2" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 06b3510..c4df0f6 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,18 +63,32 @@ - +

- Version 0.15.1 of Supersonic + Version 0.15.2 of Supersonic

+

+ Added +

+
    +
  • Improvements across a few translations
  • +
  • BPM column added to tracklist
  • +
  • Animate button overlays when mouse in/out of album grid
  • +
  • Album grid play button now takes color from theme
  • +
+

Fixed

    -
  • Fix crashing on playback on Windows
  • -
  • Fix crashing when clicking on album filters button
  • +
  • Crashing when loading locally saved play queue with files deleted from server
  • +
  • Occasionally crashing when removing tracks from quue via the pop-up queue
  • +
  • Album info dialog wouldn't scroll long description text
  • +
  • Regression: Peak meter was broken since 0.15.0
  • +
  • Playlist descriptions and track comments with newlines could overflow on top of other UI elements
  • +
  • Remember scroll position when navigating the history back to an album or playlist page
diff --git a/res/metadata.go b/res/metadata.go index 2a4172e..fc313f5 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.15.1" + AppVersion = "0.15.2" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -13,10 +13,19 @@ const ( ) var ( - WhatsAdded = `` + WhatsAdded = ` +## Added +* Improvements across a few translations +* BPM column added to tracklist +* Animate button overlays when mouse in/out of album grid +* Album grid play button now takes color from theme` WhatsFixed = ` ## Fixed -* Fix crashing on playback on Windows -* Fix crashing when clicking on album filters button` +* Crashing when loading locally saved play queue with files deleted from server +* Occasionally crashing when removing tracks from quue via the pop-up queue +* Album info dialog wouldn't scroll long description text +* Regression: Peak meter was broken since 0.15.0 +* Playlist descriptions and track comments with newlines could overflow on top of other UI elements +* Remember scroll position when navigating the history back to an album or playlist page` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index 705294f..9dbf053 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.1" +#define MyAppVersion "0.15.2" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"