Prepare for 0.8.2 release
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
# Change Log
|
# 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
|
## [0.8.1] - 2023-12-06
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
icon_path = ./res/appicon-512.png
|
icon_path = ./res/appicon-512.png
|
||||||
app_name = Supersonic
|
app_name = Supersonic
|
||||||
app_version = 0.8.1
|
app_version = 0.8.2
|
||||||
|
|
||||||
build:
|
build:
|
||||||
go build
|
go build
|
||||||
|
|||||||
@@ -28,14 +28,12 @@
|
|||||||
<li>Scrobble plays to server, with configurable criteria</li>
|
<li>Scrobble plays to server, with configurable criteria</li>
|
||||||
<li>Multi-server support</li>
|
<li>Multi-server support</li>
|
||||||
<li>Primary and alternate server hostnames, e.g. for internal and external URLs</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>Set filters in albums browsing view</li>
|
||||||
<li>Album and playlist views with tracklist and cover image</li>
|
<li>Album and playlist views with tracklist and cover image</li>
|
||||||
<li>Artist view with biography, image, similar artists, and discography</li>
|
<li>Artist view with biography, image, similar artists, and discography</li>
|
||||||
<li>Create, play, and update playlists</li>
|
<li>Create, play, and update playlists</li>
|
||||||
<li>Sort tracklist views by column and configure visible tracklist columns</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>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>
|
<li>Shuffle and repeat playback modes (partial; shuffle album, playlist, artist radio, random songs)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</description>
|
</description>
|
||||||
@@ -61,19 +59,20 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2023-12-06" version="0.8.1">
|
<release date="2023-12-16" version="0.8.2">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.8.1 of Supersonic
|
Version 0.8.2 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Artist Radio on Jellyfin not generating a fresh mix if clicked a second time</li>
|
<li>Occasional crash when showing album info dialog, especially on Jellyfin</li>
|
||||||
<li>On Jellyfin, a long artist biography could overflow the page header</li>
|
<li>Unable to connect to Airsonic servers not supporting latest Subsonic API</li>
|
||||||
<li>Systray icon missing on Linux since 0.7.0</li>
|
<li>Long album titles overflow the bounds of info dialog</li>
|
||||||
|
<li>ReplayGain "prevent clipping" setting was reversed</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+5
-4
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.8.1"
|
AppVersion = "0.8.2"
|
||||||
AppVersionTag = "v" + AppVersion
|
AppVersionTag = "v" + AppVersion
|
||||||
ConfigFile = "config.toml"
|
ConfigFile = "config.toml"
|
||||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||||
@@ -16,8 +16,9 @@ var (
|
|||||||
|
|
||||||
WhatsFixed = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* Artist Radio on Jellyfin not generating a fresh mix if clicked a second time
|
* Occasional crash when showing album info dialog, especially on Jellyfin
|
||||||
* On Jellyfin, a long artist biography could overflow the page header
|
* Unable to connect to Airsonic servers not supporting latest Subsonic API
|
||||||
* Systray icon missing on Linux since 0.7.0
|
* Long album titles overflow the bounds of info dialog
|
||||||
|
* ReplayGain "prevent clipping" setting was reversed
|
||||||
`
|
`
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user