prepare for 0.20.1 release
This commit is contained in:
@@ -1,5 +1,26 @@
|
|||||||
# Change Log
|
# 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]
|
## [0.20.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
[Details]
|
[Details]
|
||||||
Icon = "res/appicon-512.png"
|
Icon = "res/appicon-512.png"
|
||||||
Name = "Supersonic"
|
Name = "Supersonic"
|
||||||
Version = "0.20.0"
|
Version = "0.20.1"
|
||||||
|
|
||||||
[LinuxAndBSD]
|
[LinuxAndBSD]
|
||||||
Categories = ["Audio", "AudioVideo"]
|
Categories = ["Audio", "AudioVideo"]
|
||||||
|
|||||||
@@ -63,36 +63,35 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2026-01-10" version="0.20.0">
|
<release date="2026-01-31" version="0.20.1">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.20.0 of Supersonic
|
Version 0.20.1 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Added
|
Added
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Quickly fade out audio when pausing</li>
|
<li>Improved translations for Chinese, Japanese, Italian</li>
|
||||||
<li>Add collapsed/compact view for page headers</li>
|
<li>Setting to disable fade out on pause</li>
|
||||||
<li>Add option to prevent screensaver or screen sleep on Now Playing page</li>
|
<li>Ignore SSL validation setting migrated to per-server option</li>
|
||||||
<li>Add lyrics tab to sidebar</li>
|
|
||||||
<li>Add additional tracklist columns for Genre, Album Artist, File Type, Date Added</li>
|
|
||||||
<li>Show year on Now Playing page</li>
|
|
||||||
<li>Option to round image corners throughout app</li>
|
|
||||||
<li>Option to used blurred album cover for background of Now Playing page</li>
|
|
||||||
<li>Left click on system tray icon raises app window</li>
|
|
||||||
<li>Button in Advanced tab of settings window to clear caches</li>
|
|
||||||
<li>Seeking Next while playing the last track in queue now cycles around back to the beginning</li>
|
|
||||||
<li>Behavior and naming of "Stop after current track" changed to "Pause after current track"</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>LrcLib fetcher no longer crashes on tracks with no artist name</li>
|
<li>Some uPnP devices not recognized</li>
|
||||||
<li>Windows now playing notifications are now silent, and include album cover</li>
|
<li>Jellyfin synced lyrics not shown as synced if first line starts at 00:00.00</li>
|
||||||
|
<li>Regression in peak meter animation smoothness</li>
|
||||||
|
<li>Some optimizations of tracklist rendering</li>
|
||||||
|
<li>Autoplay tracks enqueuing too early</li>
|
||||||
|
<li>Fix equalizer filter string for ffmpeg</li>
|
||||||
|
<li>Unnecessarily large minimum window width for pages with tracklist</li>
|
||||||
|
<li>Use sort tags for sorting artist discography by album name (OpenSubsonic only)</li>
|
||||||
|
<li>For Jellyfin - Add to Playlist dialog not showing playlists when logged in with username in different case</li>
|
||||||
|
<li>Fix Now Playing background dissolve animation when next track has same cover art as previous</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+14
-15
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.20.0"
|
AppVersion = "0.20.1"
|
||||||
AppVersionTag = "v" + AppVersion
|
AppVersionTag = "v" + AppVersion
|
||||||
ConfigFile = "config.toml"
|
ConfigFile = "config.toml"
|
||||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||||
@@ -15,21 +15,20 @@ const (
|
|||||||
var (
|
var (
|
||||||
WhatsAdded = `
|
WhatsAdded = `
|
||||||
## Added
|
## Added
|
||||||
* Quickly fade out audio when pausing
|
* Improved translations for Chinese, Japanese, Italian
|
||||||
* Add collapsed/compact view for page headers
|
* Setting to disable fade out on pause
|
||||||
* Add option to prevent screensaver or screen sleep on Now Playing page
|
* Ignore SSL validation setting migrated to per-server option`
|
||||||
* 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 = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* LrcLib fetcher no longer crashes on tracks with no artist name
|
* Some uPnP devices not recognized
|
||||||
* Windows now playing notifications are now silent, and include album cover`
|
* 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`
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
#define MyAppName "Supersonic"
|
#define MyAppName "Supersonic"
|
||||||
#define MyAppVersion "0.20.0"
|
#define MyAppVersion "0.20.1"
|
||||||
#define MyAppPublisher "Drew Weymouth"
|
#define MyAppPublisher "Drew Weymouth"
|
||||||
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
||||||
#define MyAppExeName "Supersonic.exe"
|
#define MyAppExeName "Supersonic.exe"
|
||||||
|
|||||||
Reference in New Issue
Block a user