diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d927ce..a403229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Change Log +## [0.20.0] + +### Added +- [#775](https://github.com/dweymouth/supersonic/issues/775) Quickly fade out audio when pausing +- [#774](https://github.com/dweymouth/supersonic/issues/774) Add collapsed/compact view for page headers +- [#745](https://github.com/dweymouth/supersonic/issues/745) Add option to prevent screensaver or screen sleep on Now Playing page +- [#744](https://github.com/dweymouth/supersonic/pull/744) Add lyrics tab to sidebar +- [#742](https://github.com/dweymouth/supersonic/issues/742) Add additional tracklist columns for Genre, Album Artist, File Type, Date Added +- [#741](https://github.com/dweymouth/supersonic/issues/741) Show year on Now Playing page +- Option to round image corners throughout app +- Option to used blurred album cover for background of Now Playing page +- [#566](https://github.com/dweymouth/supersonic/issues/566) Left click on system tray icon raises app window +- Button in Advanced tab of settings window to clear caches + +### Changed +- [#790](https://github.com/dweymouth/supersonic/issues/790) Seeking Next while playing the last track in queue now cycles around back to the beginning +- [#787](https://github.com/dweymouth/supersonic/issues/787) Behavior and naming of "Stop after current track" changed to "Pause after current track" +- [#759](https://github.com/dweymouth/supersonic/pull/759) Migrate to Fyne 2.7 + +### Fixed +- [#748](https://github.com/dweymouth/supersonic/issues/748) LrcLib fetcher no longer crashes on tracks with no artist name +- [#660](https://github.com/dweymouth/supersonic/issues/660) Windows now playing notifications are now silent, and include album cover + ## [0.19.0] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index 4a05c80..bb92913 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.19.0" + Version = "0.20.0" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index ad6452c..55613fa 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,34 +63,36 @@ - +

- Version 0.19.0 of Supersonic + Version 0.20.0 of Supersonic

Added

    -
  • 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
  • +
  • Quickly fade out audio when pausing
  • +
  • Add collapsed/compact view for page headers
  • +
  • Add option to prevent screensaver or screen sleep on Now Playing page
  • +
  • Add lyrics tab to sidebar
  • +
  • Add additional tracklist columns for Genre, Album Artist, File Type, Date Added
  • +
  • Show year on Now Playing page
  • +
  • Option to round image corners throughout app
  • +
  • Option to used blurred album cover for background of Now Playing page
  • +
  • Left click on system tray icon raises app window
  • +
  • Button in Advanced tab of settings window to clear caches
  • +
  • Seeking Next while playing the last track in queue now cycles around back to the beginning
  • +
  • Behavior and naming of "Stop after current track" changed to "Pause after current track"

Fixed

    -
  • 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
  • +
  • LrcLib fetcher no longer crashes on tracks with no artist name
  • +
  • Windows now playing notifications are now silent, and include album cover
diff --git a/res/metadata.go b/res/metadata.go index 3e4d261..4fc1bab 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,31 +3,33 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.19.0" + AppVersion = "0.20.0" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" LatestReleaseURL = GithubURL + "/releases/latest" KofiURL = "https://ko-fi.com/dweymouth" - Copyright = "Copyright © 2022–2025 Drew Weymouth and contributors" + Copyright = "Copyright © 2022–2026 Drew Weymouth and contributors" ) var ( WhatsAdded = ` ## Added -* 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` +* Quickly fade out audio when pausing +* Add collapsed/compact view for page headers +* Add option to prevent screensaver or screen sleep on Now Playing page +* Add lyrics tab to sidebar +* Add additional tracklist columns for Genre, Album Artist, File Type, Date Added +* Show year on Now Playing page +* Option to round image corners throughout app +* Option to used blurred album cover for background of Now Playing page +* Left click on system tray icon raises app window +* Button in Advanced tab of settings window to clear caches +* Seeking Next while playing the last track in queue now cycles around back to the beginning +* Behavior and naming of "Stop after current track" changed to "Pause after current track"` WhatsFixed = ` ## Fixed -* 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` +* LrcLib fetcher no longer crashes on tracks with no artist name +* Windows now playing notifications are now silent, and include album cover` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index 76fef2b..eb57a47 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.19.0" +#define MyAppVersion "0.20.0" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"