prepare for 0.10.1 release

This commit is contained in:
Drew Weymouth
2024-04-21 09:18:52 -07:00
parent b49ab2cad1
commit 59dd4a76eb
4 changed files with 21 additions and 39 deletions
+8
View File
@@ -1,5 +1,13 @@
# Change Log # Change Log
## [0.10.1] - 2024-04-21
### Fixed
- [#369](https://github.com/dweymouth/supersonic/issues/369) Crashing when trying to add a new server
- [#370](https://github.com/dweymouth/supersonic/issues/370) Lyrics don't refresh when playing next song
- What's New dialog wasn't showing when launching updated version
- Crash on exit when saving play queue to server and no track playing
## [0.10.0] - 2024-04-17 ## [0.10.0] - 2024-04-17
### 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.10.0 app_version = 0.10.1
build: build:
go build go build
+6 -21
View File
@@ -61,35 +61,20 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2024-04-17" version="0.10.0"> <release date="2024-04-21" version="0.10.1">
<description> <description>
<p> <p>
Version 0.10.0 of Supersonic Version 0.10.1 of Supersonic
</p> </p>
<p>
Added
</p>
<ul>
<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> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Can't reorder track in play queue more than once</li> <li>Crashing when trying to add a new server</li>
<li>Playlist's comment text doesn't wrap</li> <li>Lyrics don't refresh when playing next song</li>
<li>Pressing down arrow on tracklist with few tracks could cause some to be hidden</li> <li>What's New dialog wasn't showing when launching updated version</li>
<li>"Move down" option in play queue context menu was moving to bottom</li> <li>Crash on exit when saving play queue to server and no track playing</li>
</ul> </ul>
</description> </description>
+6 -17
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.10.0" AppVersion = "0.10.1"
AppVersionTag = "v" + AppVersion AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml" ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic" GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,24 +13,13 @@ const (
) )
var ( var (
WhatsAdded = ` WhatsAdded = ``
## Added
* 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 = ` WhatsFixed = `
## Fixed ## Fixed
* Can't reorder track in play queue more than once * Crashing when trying to add a new server
* Playlist's comment text doesn't wrap * Lyrics don't refresh when playing next song
* Pressing down arrow on tracklist with few tracks could cause some to be hidden * What's New dialog wasn't showing when launching updated version
* "Move down" option in play queue context menu was moving to bottom * Crash on exit when saving play queue to server and no track playing
` `
) )