Skip to content

Commit

Permalink
prepare for 0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Apr 17, 2024
1 parent 547799b commit f5ec185
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 20 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [0.10.0] - 2024-04-17

### Added
- [#128](https://github.com/dweymouth/supersonic/issues/128) Support mouse back and forward buttons for navigation
- [#238](https://github.com/dweymouth/supersonic/issues/238) Redesigned Now Playing page with large cover art and lyrics
- [#303](https://github.com/dweymouth/supersonic/issues/303) Add context menu entry to create sharing URLs (Subsonic servers only)
- [#337](https://github.com/dweymouth/supersonic/issues/337) Add option to load/save play queue to Subsonic servers instead of locally
- [#350](https://github.com/dweymouth/supersonic/issues/350) Add option to shuffle artist's discography by albums or tracks
- [#351](https://github.com/dweymouth/supersonic/issues/351) Show original and reissue date for albums if available (OpenSubsonic servers)
- [#352](https://github.com/dweymouth/supersonic/pull/352) Add "Song radio" option to tracklist context menus
- [#361](https://github.com/dweymouth/supersonic/issues/361) Add "Play next" option to context menus
- [#366](https://github.com/dweymouth/supersonic/pull/366) Add sorting options to Artists page

### Fixed
- [#330](https://github.com/dweymouth/supersonic/issues/330) Can't reorder track in play queue more than once
- [#345](https://github.com/dweymouth/supersonic/issues/345) Playlist's comment text doesn't wrap
- [#346](https://github.com/dweymouth/supersonic/issues/346) Pressing down arrow on tracklist with few tracks could cause some to be hidden
- [#364](https://github.com/dweymouth/supersonic/issues/364) "Move down" option in play queue context menu was moving to bottom

## [0.9.1] - 2024-02-25

### 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.1
app_version = 0.10.0

build:
go build
Expand Down
25 changes: 15 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,35 @@
</screenshots>

<releases>
<release date="2024-02-25" version="0.9.1">
<release date="2024-04-17" version="0.10.0">
<description>
<p>
Version 0.9.1 of Supersonic
Version 0.10.0 of Supersonic
</p>

<p>
Added
</p>
<ul>
<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>
<li>Support mouse back and forward buttons for navigation</li>
<li>Redesigned Now Playing page with large cover art and lyrics</li>
<li>Add context menu entry to create sharing URLs (Subsonic servers only)</li>
<li>Add option to load/save play queue to Subsonic servers instead of locally</li>
<li>Add option to shuffle artist's discography by albums or tracks</li>
<li>Show original and reissue date for albums if available (OpenSubsonic servers)</li>
<li>Add "Song radio" option to tracklist context menus</li>
<li>Add "Play next" option to context menus</li>
<li>Add sorting options to Artists page</li>
</ul>

<p>
Fixed
</p>
<ul>
<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>
<li>Can't reorder track in play queue more than once</li>
<li>Playlist's comment text doesn't wrap</li>
<li>Pressing down arrow on tracklist with few tracks could cause some to be hidden</li>
<li>"Move down" option in play queue context menu was moving to bottom</li>
</ul>

</description>
Expand Down
23 changes: 14 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.1"
AppVersion = "0.10.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
Expand All @@ -15,17 +15,22 @@ const (
var (
WhatsAdded = `
## Added
* 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
* Support mouse back and forward buttons for navigation
* Redesigned Now Playing page with large cover art and lyrics
* Add context menu entry to create sharing URLs (Subsonic servers only)
* Add option to load/save play queue to Subsonic servers instead of locally
* Add option to shuffle artist's discography by albums or tracks
* Show original and reissue date for albums if available (OpenSubsonic servers)
* Add "Song radio" option to tracklist context menus
* Add "Play next" option to context menus
* Add sorting options to Artists page
`

WhatsFixed = `
## Fixed
* 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
* Can't reorder track in play queue more than once
* Playlist's comment text doesn't wrap
* Pressing down arrow on tracklist with few tracks could cause some to be hidden
* "Move down" option in play queue context menu was moving to bottom
`
)

0 comments on commit f5ec185

Please sign in to comment.