diff --git a/CHANGELOG.md b/CHANGELOG.md index a403229..bb87f72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## [0.20.1] + +### Added +- Improved translations for Chinese, Japanese, Italian +- [#814](https://github.com/dweymouth/supersonic/pull/814) Setting to disable fade out on pause + +### Changed +- [#798](https://github.com/dweymouth/supersonic/issues/798) Ignore SSL validation setting migrated to per-server option + +### Fixed +- [#614](https://github.com/dweymouth/supersonic/issues/614) Some uPnP devices not recognized +- [#809](https://github.com/dweymouth/supersonic/issues/809) Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00 +- [#804](https://github.com/dweymouth/supersonic/issues/804) Regression in peak meter animation smoothness +- Some optimizations of tracklist rendering +- [#810](https://github.com/dweymouth/supersonic/issues/810) Autoplay tracks enqueuing too early +- [#834](https://github.com/dweymouth/supersonic/pull/834) Fix equalizer filter string for ffmpeg +- [#813](https://github.com/dweymouth/supersonic/issues/813) Unnecessarily large minimum window width for pages with tracklist +- [#485](https://github.com/dweymouth/supersonic/discussions/485) Use sort tags for sorting artist discography by album name (OpenSubsonic only) +- [#384](https://github.com/dweymouth/supersonic/issues/384) for Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case +- Fix Now Playing background dissolve animation when next track has same cover art as previous + ## [0.20.0] ### Added diff --git a/FyneApp.toml b/FyneApp.toml index bb92913..2fcaa6f 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -1,7 +1,7 @@ [Details] Icon = "res/appicon-512.png" Name = "Supersonic" - Version = "0.20.0" + Version = "0.20.1" [LinuxAndBSD] Categories = ["Audio", "AudioVideo"] diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml index 55613fa..b21b748 100644 --- a/res/io.github.dweymouth.supersonic.appdata.xml +++ b/res/io.github.dweymouth.supersonic.appdata.xml @@ -63,36 +63,35 @@ - +

- Version 0.20.0 of Supersonic + Version 0.20.1 of Supersonic

Added

    -
  • 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"
  • +
  • Improved translations for Chinese, Japanese, Italian
  • +
  • Setting to disable fade out on pause
  • +
  • Ignore SSL validation setting migrated to per-server option

Fixed

    -
  • LrcLib fetcher no longer crashes on tracks with no artist name
  • -
  • Windows now playing notifications are now silent, and include album cover
  • +
  • Some uPnP devices not recognized
  • +
  • Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00
  • +
  • Regression in peak meter animation smoothness
  • +
  • Some optimizations of tracklist rendering
  • +
  • Autoplay tracks enqueuing too early
  • +
  • Fix equalizer filter string for ffmpeg
  • +
  • Unnecessarily large minimum window width for pages with tracklist
  • +
  • Use sort tags for sorting artist discography by album name (OpenSubsonic only)
  • +
  • For Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case
  • +
  • Fix Now Playing background dissolve animation when next track has same cover art as previous
diff --git a/res/metadata.go b/res/metadata.go index 4fc1bab..a1b5342 100644 --- a/res/metadata.go +++ b/res/metadata.go @@ -3,7 +3,7 @@ package res const ( AppName = "supersonic" DisplayName = "Supersonic" - AppVersion = "0.20.0" + AppVersion = "0.20.1" AppVersionTag = "v" + AppVersion ConfigFile = "config.toml" GithubURL = "https://github.com/dweymouth/supersonic" @@ -15,21 +15,20 @@ const ( var ( WhatsAdded = ` ## Added -* 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"` +* Improved translations for Chinese, Japanese, Italian +* Setting to disable fade out on pause +* Ignore SSL validation setting migrated to per-server option` WhatsFixed = ` ## Fixed -* LrcLib fetcher no longer crashes on tracks with no artist name -* Windows now playing notifications are now silent, and include album cover` +* Some uPnP devices not recognized +* Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00 +* Regression in peak meter animation smoothness +* Some optimizations of tracklist rendering +* Autoplay tracks enqueuing too early +* Fix equalizer filter string for ffmpeg +* Unnecessarily large minimum window width for pages with tracklist +* Use sort tags for sorting artist discography by album name (OpenSubsonic only) +* For Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case +* Fix Now Playing background dissolve animation when next track has same cover art as previous` ) diff --git a/win_inno_installscript.iss b/win_inno_installscript.iss index eb57a47..e788e2a 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.20.0" +#define MyAppVersion "0.20.1" #define MyAppPublisher "Drew Weymouth" #define MyAppURL "https://github.com/dweymouth/supersonic" #define MyAppExeName "Supersonic.exe"