diff --git a/CHANGELOG.md b/CHANGELOG.md index d9bf781..886bd65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [0.18.0] + +### Added +- [#665](https://github.com/dweymouth/supersonic/issues/665) Make play button on Albums page configurable to shuffle or play in order +- [#668](https://github.com/dweymouth/supersonic/issues/668) Add sample rate, bit depth, and channel count to track info dialog +- [#669](https://github.com/dweymouth/supersonic/pull/669) Add waveform seekbar +- [#671](https://github.com/dweymouth/supersonic/pull/671) Add CLI commands to start minimized, and to show/raise the app window +- [#674](https://github.com/dweymouth/supersonic/pull/674) Add CLI commands to search and play albums, tracks, and playlists +- [#679](https://github.com/dweymouth/supersonic/pull/679) Add player control buttons to Windows taskbar thumbnail +- [#681](https://github.com/dweymouth/supersonic/pull/681) Add ability to stop playback after current track finishes + ## [0.17.0] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index ed167a2..7b6426b 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.17.0" + Version = "0.18.0" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 011eaa9..ca242c3 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,34 +63,23 @@ - +

- Version 0.17.0 of Supersonic + Version 0.18.0 of Supersonic

Added

    -
  • Group releases by Release Type on artist pages
  • -
  • Allow customization of grid card size
  • -
  • New translations: Korean and Russian
  • -
  • Some updates to other translations
  • -
- -

- Fixed -

-
    -
  • 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
  • +
  • Make play button on Albums page configurable to shuffle or play in order
  • +
  • Add sample rate, bit depth, and channel count to track info dialog
  • +
  • Add waveform seekbar
  • +
  • Add CLI commands to start minimized, and to show/raise the app window
  • +
  • Add CLI commands to search and play albums, tracks, and playlists
  • +
  • Add player control buttons to Windows taskbar thumbnail
  • +
  • Add ability to stop playback after current track finishes
diff --git a/res/metadata.go b/res/metadata.go index 1b93a12..05d513f 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.17.0" + AppVersion = "0.18.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,19 +15,13 @@ const ( var ( WhatsAdded = ` ## Added -* 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` +* Make play button on Albums page configurable to shuffle or play in order +* Add sample rate, bit depth, and channel count to track info dialog +* Add waveform seekbar +* Add CLI commands to start minimized, and to show/raise the app window +* Add CLI commands to search and play albums, tracks, and playlists +* Add player control buttons to Windows taskbar thumbnail +* Add ability to stop playback after current track finishes` - WhatsFixed = ` -## Fixed -* 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` + WhatsFixed = `` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index d087f9b..6a5b85d 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.17.0" +#define MyAppVersion "0.18.0" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"