From e506652423143ffe6e1ebf74936376205ab6e6c4 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Mon, 16 Jun 2025 08:31:11 -0700 Subject: [PATCH] prepare for 0.16.0 release --- CHANGELOG.md | 14 +++++++++++++ FyneApp.toml | 2 +- ...io.github.dweymouth.supersonic.appdata.xml | 21 ++++++++----------- res/metadata.go | 19 +++++++---------- win_inno_installscript.iss | 2 +- 5 files changed, 33 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 475cb7a..a4143b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [0.16.0] + +### Added +- [#519](https://github.com/dweymouth/supersonic/issues/519) Add click-to-seek to lyrics viewer for synced lyrics +- [#625](https://github.com/dweymouth/supersonic/issues/625) Allow customization of grid card size +- [#628](https://github.com/dweymouth/supersonic/issues/628) Add setting to request transcoding to a specific format/bitrate from server +- [#631](https://github.com/dweymouth/supersonic/pull/631) Japanese translation improvements + +### Fixed +- New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess +- [#612](https://github.com/dweymouth/supersonic/issues/612) Crashing with custom themes that change the Primary color +- [#619](https://github.com/dweymouth/supersonic/issues/619) Incorrect tracks removed from playlist if removing from searched view + + ## [0.15.2] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index d94d67f..929aa6a 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.15.2" + Version = "0.16.0" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index c4df0f6..e6712c4 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,32 +63,29 @@ - +

- Version 0.15.2 of Supersonic + Version 0.16.0 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
  • +
  • Add click-to-seek to lyrics viewer for synced lyrics
  • +
  • Allow customization of grid card size
  • +
  • Add setting to request transcoding to a specific format/bitrate from server
  • +
  • Japanese translation improvements

Fixed

    -
  • 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
  • +
  • New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
  • +
  • Crashing with custom themes that change the Primary color
  • +
  • Incorrect tracks removed from playlist if removing from searched view
diff --git a/res/metadata.go b/res/metadata.go index fc313f5..5a040b6 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.15.2" + AppVersion = "0.16.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,17 +15,14 @@ const ( var ( 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` +* Add click-to-seek to lyrics viewer for synced lyrics +* Allow customization of grid card size +* Add setting to request transcoding to a specific format/bitrate from server +* Japanese translation improvements` WhatsFixed = ` ## Fixed -* 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` +* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess +* Crashing with custom themes that change the Primary color +* Incorrect tracks removed from playlist if removing from searched view` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index 9dbf053..cbf3765 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.2" +#define MyAppVersion "0.16.0" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"