prepare for 0.10.0 release

This commit is contained in:
Drew Weymouth
2024-04-17 08:43:32 -07:00
parent 547799b483
commit f5ec18562d
4 changed files with 49 additions and 20 deletions
+15 -10
View File
@@ -61,30 +61,35 @@
</screenshots>
<releases>
<release date="2024-02-25" version="0.9.1">
<release date="2024-04-17" version="0.10.0">
<description>
<p>
Version 0.9.1 of Supersonic
Version 0.10.0 of Supersonic
</p>
<p>
Added
</p>
<ul>
<li>Show visual loading cue when searching and no results yet</li>
<li>Arrow key scrolling and focus keyboard traversal to grid and list views</li>
<li>Ctrl+Q keyboard shortcut to quit app on Windows and Linux</li>
<li>Support mouse back and forward buttons for navigation</li>
<li>Redesigned Now Playing page with large cover art and lyrics</li>
<li>Add context menu entry to create sharing URLs (Subsonic servers only)</li>
<li>Add option to load/save play queue to Subsonic servers instead of locally</li>
<li>Add option to shuffle artist's discography by albums or tracks</li>
<li>Show original and reissue date for albums if available (OpenSubsonic servers)</li>
<li>Add "Song radio" option to tracklist context menus</li>
<li>Add "Play next" option to context menus</li>
<li>Add sorting options to Artists page</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>A few MPRIS bugs</li>
<li>Show modal dialog when connecting to server to block UI interaction which could cause crash</li>
<li>High CPU use when certain dialogs were shown</li>
<li>Make tracklist widget more efficient</li>
<li>Lower CPU use when text entry fields are focused</li>
<li>Can't reorder track in play queue more than once</li>
<li>Playlist's comment text doesn't wrap</li>
<li>Pressing down arrow on tracklist with few tracks could cause some to be hidden</li>
<li>"Move down" option in play queue context menu was moving to bottom</li>
</ul>
</description>
+14 -9
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.9.1"
AppVersion = "0.10.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,17 +15,22 @@ const (
var (
WhatsAdded = `
## Added
* Show visual loading cue when searching and no results yet
* Arrow key scrolling and focus keyboard traversal to grid and list views
* Ctrl+Q keyboard shortcut to quit app on Windows and Linux
* Support mouse back and forward buttons for navigation
* Redesigned Now Playing page with large cover art and lyrics
* Add context menu entry to create sharing URLs (Subsonic servers only)
* Add option to load/save play queue to Subsonic servers instead of locally
* Add option to shuffle artist's discography by albums or tracks
* Show original and reissue date for albums if available (OpenSubsonic servers)
* Add "Song radio" option to tracklist context menus
* Add "Play next" option to context menus
* Add sorting options to Artists page
`
WhatsFixed = `
## Fixed
* A few MPRIS bugs (thanks @adamantike!)
* Show modal dialog when connecting to server to block UI interaction which could cause crash
* High CPU use when certain dialogs were shown
* Make tracklist widget more efficient
* Lower CPU use when text entry fields are focused
* Can't reorder track in play queue more than once
* Playlist's comment text doesn't wrap
* Pressing down arrow on tracklist with few tracks could cause some to be hidden
* "Move down" option in play queue context menu was moving to bottom
`
)