prepare for 0.15.2 release

This commit is contained in:
Drew Weymouth
2025-04-25 08:08:29 -07:00
parent b95807277f
commit 9bed867238
5 changed files with 49 additions and 10 deletions
+18 -4
View File
@@ -63,18 +63,32 @@
</screenshots>
<releases>
<release date="2025-04-07" version="0.15.1">
<release date="2025-04-25" version="0.15.2">
<description>
<p>
Version 0.15.1 of Supersonic
Version 0.15.2 of Supersonic
</p>
<p>
Added
</p>
<ul>
<li>Improvements across a few translations</li>
<li>BPM column added to tracklist</li>
<li>Animate button overlays when mouse in/out of album grid</li>
<li>Album grid play button now takes color from theme</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>Fix crashing on playback on Windows</li>
<li>Fix crashing when clicking on album filters button</li>
<li>Crashing when loading locally saved play queue with files deleted from server</li>
<li>Occasionally crashing when removing tracks from quue via the pop-up queue</li>
<li>Album info dialog wouldn't scroll long description text</li>
<li>Regression: Peak meter was broken since 0.15.0</li>
<li>Playlist descriptions and track comments with newlines could overflow on top of other UI elements</li>
<li>Remember scroll position when navigating the history back to an album or playlist page</li>
</ul>
</description>
+13 -4
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.15.1"
AppVersion = "0.15.2"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,10 +13,19 @@ const (
)
var (
WhatsAdded = ``
WhatsAdded = `
## Added
* Improvements across a few translations
* BPM column added to tracklist
* Animate button overlays when mouse in/out of album grid
* Album grid play button now takes color from theme`
WhatsFixed = `
## Fixed
* Fix crashing on playback on Windows
* Fix crashing when clicking on album filters button`
* Crashing when loading locally saved play queue with files deleted from server
* Occasionally crashing when removing tracks from quue via the pop-up queue
* Album info dialog wouldn't scroll long description text
* Regression: Peak meter was broken since 0.15.0
* Playlist descriptions and track comments with newlines could overflow on top of other UI elements
* Remember scroll position when navigating the history back to an album or playlist page`
)