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
+19
View File
@@ -1,5 +1,24 @@
# Change Log # Change Log
## [0.10.0] - 2024-04-17
### Added
- [#128](https://github.com/dweymouth/supersonic/issues/128) Support mouse back and forward buttons for navigation
- [#238](https://github.com/dweymouth/supersonic/issues/238) Redesigned Now Playing page with large cover art and lyrics
- [#303](https://github.com/dweymouth/supersonic/issues/303) Add context menu entry to create sharing URLs (Subsonic servers only)
- [#337](https://github.com/dweymouth/supersonic/issues/337) Add option to load/save play queue to Subsonic servers instead of locally
- [#350](https://github.com/dweymouth/supersonic/issues/350) Add option to shuffle artist's discography by albums or tracks
- [#351](https://github.com/dweymouth/supersonic/issues/351) Show original and reissue date for albums if available (OpenSubsonic servers)
- [#352](https://github.com/dweymouth/supersonic/pull/352) Add "Song radio" option to tracklist context menus
- [#361](https://github.com/dweymouth/supersonic/issues/361) Add "Play next" option to context menus
- [#366](https://github.com/dweymouth/supersonic/pull/366) Add sorting options to Artists page
### Fixed
- [#330](https://github.com/dweymouth/supersonic/issues/330) Can't reorder track in play queue more than once
- [#345](https://github.com/dweymouth/supersonic/issues/345) Playlist's comment text doesn't wrap
- [#346](https://github.com/dweymouth/supersonic/issues/346) Pressing down arrow on tracklist with few tracks could cause some to be hidden
- [#364](https://github.com/dweymouth/supersonic/issues/364) "Move down" option in play queue context menu was moving to bottom
## [0.9.1] - 2024-02-25 ## [0.9.1] - 2024-02-25
### Added ### Added
+1 -1
View File
@@ -1,6 +1,6 @@
icon_path = ./res/appicon-512.png icon_path = ./res/appicon-512.png
app_name = Supersonic app_name = Supersonic
app_version = 0.9.1 app_version = 0.10.0
build: build:
go build go build
+15 -10
View File
@@ -61,30 +61,35 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2024-02-25" version="0.9.1"> <release date="2024-04-17" version="0.10.0">
<description> <description>
<p> <p>
Version 0.9.1 of Supersonic Version 0.10.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Show visual loading cue when searching and no results yet</li> <li>Support mouse back and forward buttons for navigation</li>
<li>Arrow key scrolling and focus keyboard traversal to grid and list views</li> <li>Redesigned Now Playing page with large cover art and lyrics</li>
<li>Ctrl+Q keyboard shortcut to quit app on Windows and Linux</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> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>A few MPRIS bugs</li> <li>Can't reorder track in play queue more than once</li>
<li>Show modal dialog when connecting to server to block UI interaction which could cause crash</li> <li>Playlist's comment text doesn't wrap</li>
<li>High CPU use when certain dialogs were shown</li> <li>Pressing down arrow on tracklist with few tracks could cause some to be hidden</li>
<li>Make tracklist widget more efficient</li> <li>"Move down" option in play queue context menu was moving to bottom</li>
<li>Lower CPU use when text entry fields are focused</li>
</ul> </ul>
</description> </description>
+14 -9
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.9.1" AppVersion = "0.10.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,17 +15,22 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Show visual loading cue when searching and no results yet * Support mouse back and forward buttons for navigation
* Arrow key scrolling and focus keyboard traversal to grid and list views * Redesigned Now Playing page with large cover art and lyrics
* Ctrl+Q keyboard shortcut to quit app on Windows and Linux * 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 = ` WhatsFixed = `
## Fixed ## Fixed
* A few MPRIS bugs (thanks @adamantike!) * Can't reorder track in play queue more than once
* Show modal dialog when connecting to server to block UI interaction which could cause crash * Playlist's comment text doesn't wrap
* High CPU use when certain dialogs were shown * Pressing down arrow on tracklist with few tracks could cause some to be hidden
* Make tracklist widget more efficient * "Move down" option in play queue context menu was moving to bottom
* Lower CPU use when text entry fields are focused
` `
) )