Prepare for 0.11.0 release

This commit is contained in:
Drew Weymouth
2024-06-05 11:23:12 -07:00
parent 1f761f2213
commit 08361fcfe0
4 changed files with 44 additions and 15 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# Change Log # Change Log
## [0.11.0] - TBD ## [0.11.0] - 2024-06-05
### Added / Changed ### Added / Changed
- Updated to Fyne 2.5, adds/fixes the following - Updated to Fyne 2.5, adds/fixes the following
@@ -20,7 +20,7 @@
- [#165](https://github.com/dweymouth/supersonic/issues/165) Last track occasionally missing in album view depending on window size - [#165](https://github.com/dweymouth/supersonic/issues/165) Last track occasionally missing in album view depending on window size
- [#383](https://github.com/dweymouth/supersonic/issues/383) Album filter button disappearing when restoring pages from history - [#383](https://github.com/dweymouth/supersonic/issues/383) Album filter button disappearing when restoring pages from history
- [#391](https://github.com/dweymouth/supersonic/issues/391) Artist radio button sometimes plays radio for wrong artist - [#391](https://github.com/dweymouth/supersonic/issues/391) Artist radio button sometimes plays radio for wrong artist
- [#378](https://github.com/dweymouth/supersonic/issues/378) Home doesn't stay refreshed - [#378](https://github.com/dweymouth/supersonic/issues/378) Clicking Home button doesn't automatically refresh page
## [0.10.1] - 2024-04-21 ## [0.10.1] - 2024-04-21
+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.1 app_version = 0.11.0
build: build:
go build go build
+22 -6
View File
@@ -61,20 +61,36 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2024-04-21" version="0.10.1"> <release date="2024-06-05" version="0.11.0">
<description> <description>
<p> <p>
Version 0.10.1 of Supersonic Version 0.11.0 of Supersonic
</p> </p>
<p>
Added
</p>
<ul>
<li>Automatically load fonts from the OS as needed to display CJK and other scripts</li>
<li>Synced lyrics support and Jellyfin lyrics support</li>
<li>LrcLib.net as a backup lyric source (disable in config file if desired)</li>
<li>Improve UX of Add to Playlist dialog</li>
<li>Show track thumbnails in tracklist views</li>
<li>Support for internet radio stations for Subsonic servers</li>
<li>New "option button" to right of current track title to bring up action menu</li>
<li>Ctrl+{backspace/delete} to remove words in text inputs</li>
<li>Improves performance and behavior of Random albums sort with upcoming Navidrome releases</li>
<li>Dynamic gradient background on Now Playing page</li>
</ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Crashing when trying to add a new server</li> <li>Last track occasionally missing in album view depending on window size</li>
<li>Lyrics don't refresh when playing next song</li> <li>Album filter button disappearing when restoring pages from history</li>
<li>What's New dialog wasn't showing when launching updated version</li> <li>Artist radio button sometimes plays radio for wrong artist</li>
<li>Crash on exit when saving play queue to server and no track playing</li> <li>Clicking Home button doesn't automatically refresh page</li>
</ul> </ul>
</description> </description>
+19 -6
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.10.1" AppVersion = "0.11.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"
@@ -13,13 +13,26 @@ const (
) )
var ( var (
WhatsAdded = `` WhatsAdded = `
## Added
* Automatically load fonts from the OS as needed to display CJK and other scripts
* Synced lyrics support and Jellyfin lyrics support
* LrcLib.net as a backup lyric source (disable in config file if desired)
* Improve UX of Add to Playlist dialog
* Show track thumbnails in tracklist views
* Support for internet radio stations for Subsonic servers
* New "option button" to right of current track title to bring up action menu
* Ctrl+{backspace/delete} to remove words in text inputs
* New portable mode option
* Improves performance and behavior of Random albums sort with upcoming Navidrome releases
* Dynamic gradient background on Now Playing page
`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Crashing when trying to add a new server * Last track occasionally missing in album view depending on window size
* Lyrics don't refresh when playing next song * Album filter button disappearing when restoring pages from history
* What's New dialog wasn't showing when launching updated version * Artist radio button sometimes plays radio for wrong artist
* Crash on exit when saving play queue to server and no track playing * Clicking Home button doesn't automatically refresh page
` `
) )