prepare for 0.9.1 release

This commit is contained in:
Drew Weymouth
2024-02-25 08:33:07 -08:00
parent 7367204892
commit 1914821283
4 changed files with 34 additions and 20 deletions
+14
View File
@@ -1,5 +1,19 @@
# Change Log # Change Log
## [0.9.1] - 2024-02-25
### Added
- [#327](https://github.com/dweymouth/supersonic/issues/327) Show visual loading cue when searching and no results yet
- [#22](https://github.com/dweymouth/supersonic/issues/22) Arrow key scrolling and focus keyboard traversal to grid and list views
- Ctrl+Q keyboard shortcut to quit app on Windows and Linux
### Fixed
- A few MPRIS bugs (thanks @adamantike!)
- [#319](https://github.com/dweymouth/supersonic/issues/319) Show modal dialog when connecting to server to block UI interaction which could cause crash
- [#321](https://github.com/dweymouth/supersonic/issues/321) High CPU use when certain dialogs were shown
- [#326](https://github.com/dweymouth/supersonic/issues/326) Make tracklist widget more efficient
- Lower CPU use when text entry fields are focused
## [0.9.0] - 2024-01-27 ## [0.9.0] - 2024-01-27
### 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.0 app_version = 0.9.1
build: build:
go build go build
+10 -10
View File
@@ -61,30 +61,30 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2024-01-27" version="0.9.0"> <release date="2024-02-25" version="0.9.1">
<description> <description>
<p> <p>
Version 0.9.0 of Supersonic Version 0.9.1 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Allow reordering of tracks in the play queue</li> <li>Show visual loading cue when searching and no results yet</li>
<li>Highlight the icon of the current page's navigation button</li> <li>Arrow key scrolling and focus keyboard traversal to grid and list views</li>
<li>Show release type in album page header (for OpenSubsonic servers)</li> <li>Ctrl+Q keyboard shortcut to quit app on Windows and Linux</li>
<li>Setting to save and reload play queue on exit/startup</li>
<li>Use most recent playlist as default in "Add to playlist" dialog</li>
<li>Option to show desktop notifications on track change</li>
<li>Added icons to context menu items</li>
</ul> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>OpenGL startup error on some hardware</li> <li>A few MPRIS bugs</li>
<li>Show modal dialog when connecting to server to block UI interaction which could cause crash</li>
<li>High CPU use when certain dialogs were shown</li>
<li>Make tracklist widget more efficient</li>
<li>Lower CPU use when text entry fields are focused</li>
</ul> </ul>
</description> </description>
+9 -9
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.9.0" AppVersion = "0.9.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"
@@ -15,17 +15,17 @@ const (
var ( var (
WhatsAdded = ` WhatsAdded = `
## Added ## Added
* Allow reordering of tracks in the play queue * Show visual loading cue when searching and no results yet
* Highlight the icon of the current page's navigation button (thanks @natilou!) * Arrow key scrolling and focus keyboard traversal to grid and list views
* Show release type in album page header (for OpenSubsonic servers) * Ctrl+Q keyboard shortcut to quit app on Windows and Linux
* Setting to save and reload play queue on exit/startup
* Use most recent playlist as default in "Add to playlist" dialog
* Option to show desktop notifications on track change
* Added icons to context menu items
` `
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* OpenGL startup error on some hardware * A few MPRIS bugs (thanks @adamantike!)
* Show modal dialog when connecting to server to block UI interaction which could cause crash
* High CPU use when certain dialogs were shown
* Make tracklist widget more efficient
* Lower CPU use when text entry fields are focused
` `
) )