diff --git a/CHANGELOG.md b/CHANGELOG.md index fd5d687..3d927ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## [0.19.0] + +### Added +- [#732](https://github.com/dweymouth/supersonic/pull/732) Add toggleable side bar play queue +- [#724](https://github.com/dweymouth/supersonic/pull/724) Add a setting to skip one-star tracks or tracks with specific keyword when shuffling +- [#716](https://github.com/dweymouth/supersonic/issues/716) Add a Last Played column to tracklists +- [#714](https://github.com/dweymouth/supersonic/issues/714) Add a Create Playlist button to the playlists page +- [#579](https://github.com/dweymouth/supersonic/issues/579) Save play queue on all queue changes rather than on shutdown +- Left and Right keybindings for seeking back/forward 10 sec + +### Fixed +- [#737](https://github.com/dweymouth/supersonic/issues/737) Peak Meter visualization crashing with custom themes +- [#735](https://github.com/dweymouth/supersonic/issues/735) Adjust spacing for rating/favorite widget on Now Playing page +- [#729](https://github.com/dweymouth/supersonic/issues/729) Occasional crashing on lyrics viewer +- [#414](https://github.com/dweymouth/supersonic/issues/414) Jellyfin M3U playlists not showing up +- Occasional hangs when loading artist pages +- Improved LrcLib lyrics fetching with unknown album or artist name + ## [0.18.1] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index 4b689a7..4a05c80 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.18.1" + Version = "0.19.0" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 95d8141..ad6452c 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,33 +63,34 @@ - +

- Version 0.18.1 of Supersonic + Version 0.19.0 of Supersonic

Added

    -
  • Save and use the most recently selected music library when re-launching app
  • -
  • Add Artists to the supported list of startup pages
  • +
  • Toggleable side bar play queue
  • +
  • New setting to skip one-star tracks or tracks with specific keyword when shuffling
  • +
  • New Last Played column for tracklists
  • +
  • Create Playlist button added to the playlists page
  • +
  • Save play queue on all queue changes rather than on shutdown
  • +
  • Left and Right keybindings for seeking back/forward 10 sec

Fixed

    -
  • Occasionally crashing on Linux when monitors go idle
  • -
  • AppImage: failing to start due to "No GLXFBConfigs returned
  • -
  • AppImage: failing to start on openSUSE-Tumbleweed and CachyOS
  • -
  • Rework format for now playing status line
  • -
  • Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)
  • -
  • Fail to start on Windows ARM64 or older x64 CPUs
  • -
  • Search results limited to 20 items
  • -
  • Transcoding not working with Jellyfin
  • -
  • Crashing on "Shuffle albums" if fewer than 20 albums available
  • +
  • Peak Meter visualization crashing with custom themes
  • +
  • Adjust spacing for rating/favorite widget on Now Playing page
  • +
  • Occasional crashing on lyrics viewer
  • +
  • Jellyfin M3U playlists not showing up
  • +
  • Occasional hangs when loading artist pages
  • +
  • Improved LrcLib lyrics fetching with unknown album or artist name
diff --git a/res/metadata.go b/res/metadata.go index a49c461..3e4d261 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.18.1" + AppVersion = "0.19.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,18 +15,19 @@ const ( var ( WhatsAdded = ` ## Added -* Save and use the most recently selected music library when re-launching app -* Add Artists to the supported list of startup pages` +* Toggleable side bar play queue +* New setting to skip one-star tracks or tracks with specific keyword when shuffling +* New Last Played column for tracklists +* Create Playlist button added to the playlists page +* Save play queue on all queue changes rather than on shutdown +* Left and Right keybindings for seeking back/forward 10 sec` WhatsFixed = ` ## Fixed -* Occasionally crashing on Linux when monitors go idle -* AppImage: failing to start due to "No GLXFBConfigs returned -* AppImage: failing to start on openSUSE-Tumbleweed and CachyOS -* Rework format for now playing status line -* Silenty failing to add large number of tracks to playlist (OpenSubsonic servers) -* Fail to start on Windows ARM64 or older x64 CPUs -* Search results limited to 20 items -* Transcoding not working with Jellyfin -* Crashing on "Shuffle albums" if fewer than 20 albums available` +* Peak Meter visualization crashing with custom themes +* Adjust spacing for rating/favorite widget on Now Playing page +* Occasional crashing on lyrics viewer +* Jellyfin M3U playlists not showing up +* Occasional hangs when loading artist pages +* Improved LrcLib lyrics fetching with unknown album or artist name` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index 2a6fa8d..76fef2b 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.18.1" +#define MyAppVersion "0.19.0" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"