diff --git a/CHANGELOG.md b/CHANGELOG.md index a4143b7..d9bf781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## [0.17.0] + +### Added +- [#654](https://github.com/dweymouth/supersonic/pull/654) Group releases by Release Type on artist pages +- [#655](https://github.com/dweymouth/supersonic/pull/655) Allow browsing a specific music library for servers that expose multiple libraries +- New translations: Korean (thanks @janghw4!) and Russian (thanks @alxrem!) +- Some updates to other translations + +### Fixed +- [#451](https://github.com/dweymouth/supersonic/issues/451) Light button colors in a light theme turn dark when hovering +- [#646](https://github.com/dweymouth/supersonic/issues/646) Use full date instead of year to sort artist discography +- Improved rendering of text entry borders when using fractional pixel scaling +- [#611](https://github.com/dweymouth/supersonic/issues/611) Windows: occasional crashes at startup +- [#624](https://github.com/dweymouth/supersonic/issues/624) Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL +- [#520](https://github.com/dweymouth/supersonic/issues/520) Windows: TLS versions above 1.2 not supported by shipped libmpv-2 +- [#536](https://github.com/dweymouth/supersonic/issues/536) Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed) +- [#647](https://github.com/dweymouth/supersonic/issues/647) Windows: some radio stream URLs wouldn't play + ## [0.16.0] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index 929aa6a..ed167a2 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.16.0" + Version = "0.17.0" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index e6712c4..011eaa9 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,29 +63,34 @@ - +

- Version 0.16.0 of Supersonic + Version 0.17.0 of Supersonic

Added

    -
  • Add click-to-seek to lyrics viewer for synced lyrics
  • +
  • Group releases by Release Type on artist pages
  • Allow customization of grid card size
  • -
  • Add setting to request transcoding to a specific format/bitrate from server
  • -
  • Japanese translation improvements
  • +
  • New translations: Korean and Russian
  • +
  • Some updates to other translations

Fixed

    -
  • 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
  • +
  • Light button colors in a light theme turn dark when hovering
  • +
  • Use full date instead of year to sort artist discography
  • +
  • Improved rendering of text entry borders when using fractional pixel scaling
  • +
  • Windows: occasional crashes at startup
  • +
  • Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
  • +
  • Windows: TLS versions above 1.2 not supported by shipped libmpv-2
  • +
  • Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
  • +
  • Windows: some radio stream URLs wouldn't play
diff --git a/res/metadata.go b/res/metadata.go index 5a040b6..1b93a12 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.16.0" + AppVersion = "0.17.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,14 +15,19 @@ const ( var ( WhatsAdded = ` ## Added -* 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` +* Group releases by Release Type on artist pages +* Allow browsing a specific music library for servers that expose multiple libraries +* New translations: Korean and Russian +* Some updates to other translations` WhatsFixed = ` ## Fixed -* 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` +* Light button colors in a light theme turn dark when hovering +* Use full date instead of year to sort artist discography +* Improved rendering of text entry borders when using fractional pixel scaling +* Windows: occasional crashes at startup +* Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL +* Windows: TLS versions above 1.2 not supported by shipped libmpv-2 +* Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed) +* Windows: some radio stream URLs wouldn't play` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index cbf3765..d087f9b 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.16.0" +#define MyAppVersion "0.17.0" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"