prepare for 0.16.0 release

This commit is contained in:
Drew Weymouth
2025-06-16 08:31:11 -07:00
parent 727c640b1b
commit e506652423
5 changed files with 33 additions and 25 deletions
+9 -12
View File
@@ -63,32 +63,29 @@
</screenshots>
<releases>
<release date="2025-04-25" version="0.15.2">
<release date="2025-06-16" version="0.16.0">
<description>
<p>
Version 0.15.2 of Supersonic
Version 0.16.0 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>
<li>Add click-to-seek to lyrics viewer for synced lyrics</li>
<li>Allow customization of grid card size</li>
<li>Add setting to request transcoding to a specific format/bitrate from server</li>
<li>Japanese translation improvements</li>
</ul>
<p>
Fixed
</p>
<ul>
<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>
<li>New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess</li>
<li>Crashing with custom themes that change the Primary color</li>
<li>Incorrect tracks removed from playlist if removing from searched view</li>
</ul>
</description>
+8 -11
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.15.2"
AppVersion = "0.16.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,17 +15,14 @@ const (
var (
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`
* Add click-to-seek to lyrics viewer for synced lyrics
* Allow customization of grid card size
* Add setting to request transcoding to a specific format/bitrate from server
* Japanese translation improvements`
WhatsFixed = `
## Fixed
* 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`
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
* Crashing with custom themes that change the Primary color
* Incorrect tracks removed from playlist if removing from searched view`
)