Skip to content

Commit

Permalink
prepare for 0.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Feb 25, 2024
1 parent 7367204 commit 1914821
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 20 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
20 changes: 10 additions & 10 deletions res/io.github.dweymouth.supersonic.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
18 changes: 9 additions & 9 deletions res/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
`
)

0 comments on commit 1914821

Please sign in to comment.