diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94f2946a..4c0a5f8f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Makefile b/Makefile
index cd7602a2..8b468d98 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/res/io.github.dweymouth.supersonic.appdata.xml b/res/io.github.dweymouth.supersonic.appdata.xml
index 874b1468..98f9daf3 100644
--- a/res/io.github.dweymouth.supersonic.appdata.xml
+++ b/res/io.github.dweymouth.supersonic.appdata.xml
@@ -28,14 +28,12 @@
Scrobble plays to server, with configurable criteria
Multi-server support
Primary and alternate server hostnames, e.g. for internal and external URLs
- Browse by albums, artists, genres, playlists
Set filters in albums browsing view
Album and playlist views with tracklist and cover image
Artist view with biography, image, similar artists, and discography
Create, play, and update playlists
Sort tracklist views by column and configure visible tracklist columns
Set/unset favorite and browse by favorite albums, artists, and songs
- View and edit play queue (add and remove tracks; reorder support coming soon)
Shuffle and repeat playback modes (partial; shuffle album, playlist, artist radio, random songs)
@@ -61,19 +59,20 @@
-
+
- Version 0.8.1 of Supersonic
+ Version 0.8.2 of Supersonic
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
diff --git a/res/metadata.go b/res/metadata.go
index e3984aae..3aabe3cf 100644
--- a/res/metadata.go
+++ b/res/metadata.go
@@ -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"
@@ -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
`
)