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
## [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
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
icon_path = ./res/appicon-512.png
app_name = Supersonic
app_version = 0.10.0
app_version = 0.10.1
build:
go build
+6 -21
View File
@@ -61,35 +61,20 @@
</screenshots>
<releases>
<release date="2024-04-17" version="0.10.0">
<release date="2024-04-21" version="0.10.1">
<description>
<p>
Version 0.10.0 of Supersonic
Version 0.10.1 of Supersonic
</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>
Fixed
</p>
<ul>
<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>
<li>Crashing when trying to add a new server</li>
<li>Lyrics don't refresh when playing next song</li>
<li>What's New dialog wasn't showing when launching updated version</li>
<li>Crash on exit when saving play queue to server and no track playing</li>
</ul>
</description>
+6 -17
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.10.0"
AppVersion = "0.10.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,24 +13,13 @@ const (
)
var (
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
`
WhatsAdded = ``
WhatsFixed = `
## Fixed
* 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
* Crashing when trying to add a new server
* 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
`
)