prepare for 0.21.1 release
This commit is contained in:
@@ -1,5 +1,18 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [0.21.1]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [#887](https://github.com/dweymouth/supersonic/pull/887) Turkish translation
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [#877](https://github.com/dweymouth/supersonic/issues/877) Regression: library not loading for Funkwhale servers
|
||||||
|
- [#895](https://github.com/dweymouth/supersonic/issues/895) Fix crash when playing track with index shorter than previous queue length while shuffling
|
||||||
|
- [#888](https://github.com/dweymouth/supersonic/issues/888) Fix intermittent crash when creating share URLs
|
||||||
|
- [#878](https://github.com/dweymouth/supersonic/pull/878) Close to dock behavior for MacOS
|
||||||
|
- [#881](https://github.com/dweymouth/supersonic/issues/881) Regression: Sorting artist discography not working
|
||||||
|
- [#875](https://github.com/dweymouth/supersonic/issues/875) Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature
|
||||||
|
|
||||||
## [0.21.0]
|
## [0.21.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.21.0"
|
Version = "0.21.1"
|
||||||
|
|
||||||
[LinuxAndBSD]
|
[LinuxAndBSD]
|
||||||
Categories = ["Audio", "AudioVideo"]
|
Categories = ["Audio", "AudioVideo"]
|
||||||
|
|||||||
@@ -63,45 +63,29 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2026-03-11" version="0.21.0">
|
<release date="2026-04-05" version="0.21.1">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.21.0 of Supersonic
|
Version 0.21.1 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Added
|
Added
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Shuffle play queue</li>
|
<li>Turkish translation</li>
|
||||||
<li>All Tracks tab on Artist page</li>
|
|
||||||
<li>Equalizer improvements: 10-band EQ option, AutoEQ headphone profiles, preset management</li>
|
|
||||||
<li>Song Radio context menu item on play queue</li>
|
|
||||||
<li>Display radio stream ICY metadata</li>
|
|
||||||
<li>-rate-current CLI option to rate the currently playing track</li>
|
|
||||||
<li>-reload-theme CLI flag to re-apply the current theme</li>
|
|
||||||
<li>Updated Polish and Chinese translations</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Changed
|
|
||||||
</p>
|
|
||||||
<ul>
|
|
||||||
<li>Shuffle and repeat controls moved into main player controls</li>
|
|
||||||
<li>Waveform seekbar disabled by default</li>
|
|
||||||
<li>Use JSON instead of XML in Subsonic API requests</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Crash in playback engine during time position update</li>
|
<li>Regression: library not loading for Funkwhale servers</li>
|
||||||
<li>Clearing cache did not clear in-memory cache</li>
|
<li>Fix crash when playing track with index shorter than previous queue length while shuffling</li>
|
||||||
<li>Normalize server URLs before connecting</li>
|
<li>Fix intermittent crash when creating share URLs</li>
|
||||||
<li>Race condition around context cancel func</li>
|
<li>Close to dock behavior for MacOS</li>
|
||||||
<li>Occasional momentary playback when loading saved play queue</li>
|
<li>Regression: Sorting artist discography not working</li>
|
||||||
<li>Fix content not loading on startup until window focused</li>
|
<li>Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+8
-15
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.21.0"
|
AppVersion = "0.21.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,14 @@ const (
|
|||||||
var (
|
var (
|
||||||
WhatsAdded = `
|
WhatsAdded = `
|
||||||
## Added
|
## Added
|
||||||
* Shuffle play queue
|
* Turkish translation`
|
||||||
* All Tracks tab on Artist page
|
|
||||||
* Equalizer improvements: 10-band EQ option, AutoEQ headphone profiles, preset management
|
|
||||||
* Song Radio context menu item on play queue
|
|
||||||
* Display radio stream ICY metadata
|
|
||||||
* -rate-current CLI option to rate the currently playing track
|
|
||||||
* -reload-theme CLI flag to re-apply the current theme
|
|
||||||
* Updated Polish and Chinese translations`
|
|
||||||
|
|
||||||
WhatsFixed = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* Crash in playback engine during time position update
|
* Regression: library not loading for Funkwhale servers
|
||||||
* Clearing cache did not clear in-memory cache
|
* Fix crash when playing track with index shorter than previous queue length while shuffling
|
||||||
* Normalize server URLs before connecting
|
* Fix intermittent crash when creating share URLs
|
||||||
* Race condition around context cancel func
|
* Close to dock behavior for MacOS
|
||||||
* Occasional momentary playback when loading saved play queue
|
* Regression: Sorting artist discography not working
|
||||||
* Fix content not loading on startup until window focused`
|
* Shuffle button on albums and playlists not working after introduction of queue shuffle mode feature`
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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.21.0"
|
#define MyAppVersion "0.21.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