prepare for 0.12.0 release and add Mac ARM Github workflow

This commit is contained in:
Drew Weymouth
2024-07-01 08:46:05 -07:00
parent 249c61d440
commit d2a67fa26e
6 changed files with 92 additions and 34 deletions
+12 -16
View File
@@ -61,36 +61,32 @@
</screenshots>
<releases>
<release date="2024-06-05" version="0.11.0">
<release date="2024-07-01" version="0.12.0">
<description>
<p>
Version 0.11.0 of Supersonic
Version 0.12.0 of Supersonic
</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>
<li>Enable drag-and-drop reordering of tracks in the play queue and playlists</li>
<li>Add command-line options to control playback</li>
<li>Add option to show album years in grid views</li>
<li>Include radio station results in Quick Search</li>
<li>Better stringification of play times longer than 1 hour</li>
<li>Add fallback logic for populating related tracks and artist top tracks if server returns none</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>Last track occasionally missing in album view depending on window size</li>
<li>Album filter button disappearing when restoring pages from history</li>
<li>Artist radio button sometimes plays radio for wrong artist</li>
<li>Clicking Home button doesn't automatically refresh page</li>
<li>Add "Play next/later" options to the related tracks list on the Now Playing page</li>
<li>Change wording of the Add/Edit server form to be less confusing</li>
<li>Window occasionally misrendered into smaller space on opening for Linux over xwayland</li>
<li>Don't crash if server returns nil saved play queue but no Subsonic error</li>
</ul>
</description>
+11 -16
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.11.0"
AppVersion = "0.12.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,24 +15,19 @@ const (
var (
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
* Enable drag-and-drop reordering of tracks in the play queue and playlists
* Add command-line options to control playback
* Add option to show album years in grid views
* Include radio station results in Quick Search
* Better stringification of play times longer than 1 hour
* Add fallback logic for populating related tracks and artist top tracks if server returns none
`
WhatsFixed = `
## Fixed
* Last track occasionally missing in album view depending on window size
* Album filter button disappearing when restoring pages from history
* Artist radio button sometimes plays radio for wrong artist
* Clicking Home button doesn't automatically refresh page
* Window occasionally misrendered into smaller space on opening for Linux over xwayland
* Add "Play next/later" options to the related tracks list on the Now Playing page
* Change wording of the Add/Edit server form to be less confusing
* Don't crash if server returns nil saved play queue but no Subsonic error
`
)