prepare for 0.8.1 release

This commit is contained in:
Drew Weymouth
2023-12-06 07:03:21 -08:00
parent e36c3d2921
commit 7106d81eff
4 changed files with 19 additions and 28 deletions
+7
View File
@@ -1,5 +1,12 @@
# Change Log # Change Log
## [0.8.1] - 2023-12-06
### Fixed
- [#284](https://github.com/dweymouth/supersonic/issues/284) Artist Radio on Jellyfin not generating a fresh mix if clicked a second time
- [#283](https://github.com/dweymouth/supersonic/issues/283) On Jellyfin, a long artist biography could overflow the page header
- [#288](https://github.com/dweymouth/supersonic/issues/288) Systray icon missing on Linux since 0.7.0
## [0.8.0] - 2023-11-15 ## [0.8.0] - 2023-11-15
### Added ### Added
+1 -1
View File
@@ -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.0 app_version = 0.8.1
build: build:
go build go build
+5 -16
View File
@@ -61,30 +61,19 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2023-11-15" version="0.8.0"> <release date="2023-12-06" version="0.8.1">
<description> <description>
<p> <p>
Version 0.8.0 of Supersonic Version 0.8.1 of Supersonic
</p> </p>
<p>
Added
</p>
<ul>
<li>Add support for connecting to Jellyfin servers</li>
<li>Add "Auto" ReplayGain option to auto-choose between Track and Album mode</li>
<li>Add experimental setting for changing UI scaling</li>
</ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Crash when repeatedly searching the All Tracks page quickly</li> <li>Artist Radio on Jellyfin not generating a fresh mix if clicked a second time</li>
<li>What's New dialog sometimes continuing to re-show on subsequent launches</li> <li>On Jellyfin, a long artist biography could overflow the page header</li>
<li>Config settings sometimes not being saved due to abnormal exits</li> <li>Systray icon missing on Linux since 0.7.0</li>
<li>Don't crash with zero-track albums or tracks with no artists</li>
<li>Slightly improved the time it takes to check server connectivity</li>
</ul> </ul>
</description> </description>
+6 -11
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.8.0" AppVersion = "0.8.1"
AppVersionTag = "v" + AppVersion AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml" ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic" GithubURL = "https://github.com/dweymouth/supersonic"
@@ -12,17 +12,12 @@ const (
) )
var ( var (
WhatsAdded = ` WhatsAdded = ``
## Added
* Add support for connecting to Jellyfin servers
* Add "Auto" ReplayGain option to auto-choose between Track and Album mode
* Add experimental setting for changing UI scaling`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Crash when repeatedly searching the All Tracks page quickly * Artist Radio on Jellyfin not generating a fresh mix if clicked a second time
* What's New dialog sometimes continuing to re-show on subsequent launches * On Jellyfin, a long artist biography could overflow the page header
* Config settings sometimes not being saved due to abnormal exits * Systray icon missing on Linux since 0.7.0
* Don't crash with zero-track albums or tracks with no artists `
* Slightly improved the time it takes to check server connectivity`
) )