prepare for 0.13.0 release

This commit is contained in:
Drew Weymouth
2024-07-28 15:57:08 -07:00
parent 45ac279693
commit 7fcbfdd456
3 changed files with 38 additions and 26 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Change Log # Change Log
## [0.13.0] - 2024-07-29 ## [0.13.0] - 2024-07-28
### Added ### Added
- [#65](https://github.com/dweymouth/supersonic/issues/65) Add support for translations, and add Chinese and Italian translations - [#65](https://github.com/dweymouth/supersonic/issues/65) Add support for translations, and add Chinese and Italian translations
+19 -12
View File
@@ -61,32 +61,39 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2024-07-01" version="0.12.0"> <release date="2024-07-28" version="0.13.0">
<description> <description>
<p> <p>
Version 0.12.0 of Supersonic Version 0.13.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Enable drag-and-drop reordering of tracks in the play queue and playlists</li> <li>Add support for translations, and add Chinese and Italian translations</li>
<li>Add command-line options to control playback</li> <li>Add a peak/RMS meter visualization</li>
<li>Add option to show album years in grid views</li> <li>Add track info dialog and context menu item</li>
<li>Include radio station results in Quick Search</li> <li>Add support for Composer (new tracklist column, and row in Track Info dialog)</li>
<li>Better stringification of play times longer than 1 hour</li> <li>Use artist sortName for sorting artist grid by name, if present</li>
<li>Add fallback logic for populating related tracks and artist top tracks if server returns none</li> <li>Add button to sort artist discography by name or year (asc or desc)</li>
<li>Prevent Windows from sleeping while music playing</li>
<li>Add a new button below the volume control to show a pop-up play queue</li>
<li>Add a config file option to disable SSL/TLS validation (useful for self-signed certificates)</li>
</ul> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Add "Play next/later" options to the related tracks list on the Now Playing page</li> <li>Japanese and possibly other scripts not truncating properly in grid views</li>
<li>Change wording of the Add/Edit server form to be less confusing</li> <li>Crash if navigating away from Artist page before cover image loaded</li>
<li>Window occasionally misrendered into smaller space on opening for Linux over xwayland</li> <li>Regression in not detecting dark/light mode for Linux</li>
<li>Don't crash if server returns nil saved play queue but no Subsonic error</li> <li>Artist page not loading artist image for servers that don't support artist largeImageURL</li>
<li>Memory leak when querying certain MPV properties</li>
<li>Fixed handling of multiple instances of the same track in the play queue</li>
<li>Improve metadata in Linux .desktop file</li>
<li>Window occasionally misrendered into smaller space on opening for Linux over xwayland (more reliable fix than last release)</li>
</ul> </ul>
</description> </description>
+18 -13
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.12.0" AppVersion = "0.13.0"
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,19 +15,24 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Enable drag-and-drop reordering of tracks in the play queue and playlists * Add support for translations, and add Chinese and Italian translations
* Add command-line options to control playback * Add a peak/RMS meter visualization
* Add option to show album years in grid views * Add track info dialog and context menu item
* Include radio station results in Quick Search * Add support for Composer (new tracklist column, and row in Track Info dialog)
* Better stringification of play times longer than 1 hour * Use artist sortName for sorting artist grid by name, if present
* Add fallback logic for populating related tracks and artist top tracks if server returns none * Add button to sort artist discography by name or year (asc or desc)
` * Prevent Windows from sleeping while music playing
* Add a new button below the volume control to show a pop-up play queue
* Add a config file option to disable SSL/TLS validation (useful for self-signed certificates)`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Window occasionally misrendered into smaller space on opening for Linux over xwayland * Japanese and possibly other scripts not truncating properly in grid views
* Add "Play next/later" options to the related tracks list on the Now Playing page * Crash if navigating away from Artist page before cover image loaded
* Change wording of the Add/Edit server form to be less confusing * Regression in not detecting dark/light mode for Linux
* Don't crash if server returns nil saved play queue but no Subsonic error * Artist page not loading artist image for servers that don't support artist largeImageURL
` * Memory leak when querying certain MPV properties
* Fixed handling of multiple instances of the same track in the play queue
* Improve metadata in Linux .desktop file
* Window occasionally misrendered into smaller space on opening for Linux over xwayland (more reliable fix than last release)`
) )