Skip to content

Commit

Permalink
Prepare for 0.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Dec 16, 2023
1 parent d10162c commit becb34c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [0.8.2] - 2023-12-16

### Fixed
- [#295](https://github.com/dweymouth/supersonic/issues/295) Occasional crash when showing album info dialog, especially on Jellyfin
- [#294](https://github.com/dweymouth/supersonic/issues/294) Unable to connect to Airsonic servers not supporting latest Subsonic API
- [#293](https://github.com/dweymouth/supersonic/issues/293) Long album titles overflow the bounds of info dialog
- [#292](https://github.com/dweymouth/supersonic/issues/292) ReplayGain "prevent clipping" setting was reversed

## [0.8.1] - 2023-12-06

### Fixed
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.8.1
app_version = 0.8.2

build:
go build
Expand Down
13 changes: 6 additions & 7 deletions res/io.github.dweymouth.supersonic.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@
<li>Scrobble plays to server, with configurable criteria</li>
<li>Multi-server support</li>
<li>Primary and alternate server hostnames, e.g. for internal and external URLs</li>
<li>Browse by albums, artists, genres, playlists</li>
<li>Set filters in albums browsing view</li>
<li>Album and playlist views with tracklist and cover image</li>
<li>Artist view with biography, image, similar artists, and discography</li>
<li>Create, play, and update playlists</li>
<li>Sort tracklist views by column and configure visible tracklist columns</li>
<li>Set/unset favorite and browse by favorite albums, artists, and songs</li>
<li>View and edit play queue (add and remove tracks; reorder support coming soon)</li>
<li>Shuffle and repeat playback modes (partial; shuffle album, playlist, artist radio, random songs)</li>
</ul>
</description>
Expand All @@ -61,19 +59,20 @@
</screenshots>

<releases>
<release date="2023-12-06" version="0.8.1">
<release date="2023-12-16" version="0.8.2">
<description>
<p>
Version 0.8.1 of Supersonic
Version 0.8.2 of Supersonic
</p>

<p>
Fixed
</p>
<ul>
<li>Artist Radio on Jellyfin not generating a fresh mix if clicked a second time</li>
<li>On Jellyfin, a long artist biography could overflow the page header</li>
<li>Systray icon missing on Linux since 0.7.0</li>
<li>Occasional crash when showing album info dialog, especially on Jellyfin</li>
<li>Unable to connect to Airsonic servers not supporting latest Subsonic API</li>
<li>Long album titles overflow the bounds of info dialog</li>
<li>ReplayGain "prevent clipping" setting was reversed</li>
</ul>

</description>
Expand Down
9 changes: 5 additions & 4 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.8.1"
AppVersion = "0.8.2"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
Expand All @@ -16,8 +16,9 @@ var (

WhatsFixed = `
## Fixed
* Artist Radio on Jellyfin not generating a fresh mix if clicked a second time
* On Jellyfin, a long artist biography could overflow the page header
* Systray icon missing on Linux since 0.7.0
* Occasional crash when showing album info dialog, especially on Jellyfin
* Unable to connect to Airsonic servers not supporting latest Subsonic API
* Long album titles overflow the bounds of info dialog
* ReplayGain "prevent clipping" setting was reversed
`
)

0 comments on commit becb34c

Please sign in to comment.