prepare for 0.9.1 release
This commit is contained in:
@@ -1,5 +1,19 @@
|
||||
# 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
|
||||
|
||||
### Added
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
icon_path = ./res/appicon-512.png
|
||||
app_name = Supersonic
|
||||
app_version = 0.9.0
|
||||
app_version = 0.9.1
|
||||
|
||||
build:
|
||||
go build
|
||||
|
||||
@@ -61,30 +61,30 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release date="2024-01-27" version="0.9.0">
|
||||
<release date="2024-02-25" version="0.9.1">
|
||||
<description>
|
||||
<p>
|
||||
Version 0.9.0 of Supersonic
|
||||
Version 0.9.1 of Supersonic
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Added
|
||||
</p>
|
||||
<ul>
|
||||
<li>Allow reordering of tracks in the play queue</li>
|
||||
<li>Highlight the icon of the current page's navigation button</li>
|
||||
<li>Show release type in album page header (for OpenSubsonic servers)</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>
|
||||
<li>Show visual loading cue when searching and no results yet</li>
|
||||
<li>Arrow key scrolling and focus keyboard traversal to grid and list views</li>
|
||||
<li>Ctrl+Q keyboard shortcut to quit app on Windows and Linux</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Fixed
|
||||
</p>
|
||||
<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>
|
||||
|
||||
</description>
|
||||
|
||||
+9
-9
@@ -3,7 +3,7 @@ package res
|
||||
const (
|
||||
AppName = "supersonic"
|
||||
DisplayName = "Supersonic"
|
||||
AppVersion = "0.9.0"
|
||||
AppVersion = "0.9.1"
|
||||
AppVersionTag = "v" + AppVersion
|
||||
ConfigFile = "config.toml"
|
||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||
@@ -15,17 +15,17 @@ const (
|
||||
var (
|
||||
WhatsAdded = `
|
||||
## Added
|
||||
* Allow reordering of tracks in the play queue
|
||||
* Highlight the icon of the current page's navigation button (thanks @natilou!)
|
||||
* Show release type in album page header (for OpenSubsonic servers)
|
||||
* 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
|
||||
* Show visual loading cue when searching and no results yet
|
||||
* Arrow key scrolling and focus keyboard traversal to grid and list views
|
||||
* Ctrl+Q keyboard shortcut to quit app on Windows and Linux
|
||||
`
|
||||
|
||||
WhatsFixed = `
|
||||
## 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
|
||||
`
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user