prepare for 0.8.0 release

This commit is contained in:
Drew Weymouth
2023-11-15 08:31:06 -08:00
parent 87fc88e308
commit 44ca55ff07
4 changed files with 38 additions and 34 deletions
+14
View File
@@ -1,5 +1,19 @@
# Change Log # Change Log
## [0.8.0] - 2023-11-15
### Added
- [#98](https://github.com/dweymouth/supersonic/issues/98) Add support for connecting to Jellyfin servers
- [#157](https://github.com/dweymouth/supersonic/issues/157) Add "Auto" ReplayGain option to auto-choose between Track and Album mode
- [#179](https://github.com/dweymouth/supersonic/issues/179) Add experimental setting for changing UI scaling
### Fixed
- [#282](https://github.com/dweymouth/supersonic/issues/282) Crash when repeatedly searching the All Tracks page quickly
- [#275](https://github.com/dweymouth/supersonic/issues/275) What's New dialog sometimes continuing to re-show on subsequent launches
- [#277](https://github.com/dweymouth/supersonic/issues/277) Config settings sometimes not being saved due to abnormal exits
- Don't crash with zero-track albums or tracks with no artists
- Slightly improved the time it takes to check server connectivity
## [0.7.0] - 2023-11-07 ## [0.7.0] - 2023-11-07
### 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.7.0 app_version = 0.8.0
build: build:
go build go build
+13 -12
View File
@@ -5,15 +5,15 @@
<metadata_license>FSFAP</metadata_license> <metadata_license>FSFAP</metadata_license>
<project_license>GPL-3.0+</project_license> <project_license>GPL-3.0+</project_license>
<name>Supersonic</name> <name>Supersonic</name>
<summary> A lightweight cross-platform desktop client for Subsonic music servers</summary> <summary> A lightweight cross-platform desktop client for Subsonic and Jellyfin music servers</summary>
<content_rating type="oars-1.0"> <content_rating type="oars-1.0">
<content_attribute id="social-audio">intense</content_attribute> <content_attribute id="social-audio">intense</content_attribute>
</content_rating> </content_rating>
<description> <description>
<p> <p>
A lightweight cross-platform desktop client for Subsonic music A lightweight cross-platform desktop client for Subsonic and Jellyfin music
servers (Navidrome, Gonic, Airsonic, etc). servers.
</p> </p>
<p> <p>
@@ -61,29 +61,30 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2023-11-07" version="0.7.0"> <release date="2023-11-15" version="0.8.0">
<description> <description>
<p> <p>
Version 0.7.0 of Supersonic Version 0.8.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>"Quick Search" popup dialog to search entire library from any page</li> <li>Add support for connecting to Jellyfin servers</li>
<li>UI Refresh and misc. internal improvements from moving to Fyne 2.4</li> <li>Add "Auto" ReplayGain option to auto-choose between Track and Album mode</li>
<li>New custom theme colors - Hyperlink and PageHeader</li> <li>Add experimental setting for changing UI scaling</li>
<li>Added support for displaying WEBP images</li>
<li>Added playback setting to force disable server transcoding</li>
</ul> </ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Crash when removing from the currently playing track to the end of the play queue</li> <li>Crash when repeatedly searching the All Tracks page quickly</li>
<li>UI hang if playback slow to begin after clicking on green play button on cover images</li> <li>What's New dialog sometimes continuing to re-show on subsequent launches</li>
<li>Config settings sometimes not being saved due to abnormal exits</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>
+10 -21
View File
@@ -1,14 +1,9 @@
package res package res
import (
"fmt"
"runtime"
)
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.7.0" AppVersion = "0.8.0"
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,24 +11,18 @@ const (
KofiURL = "https://ko-fi.com/dweymouth" KofiURL = "https://ko-fi.com/dweymouth"
) )
func shortcutKey() string {
if runtime.GOOS == "darwin" {
return "Cmd"
}
return "Ctrl"
}
var ( var (
WhatsAdded = fmt.Sprintf(` WhatsAdded = `
## Added ## Added
* New "Quick search" feature to search entire library from anywhere (%s+G shortcut) * Add support for connecting to Jellyfin servers
* Support for loading WEBP images * Add "Auto" ReplayGain option to auto-choose between Track and Album mode
* UI Refresh from migrating to Fyne 2.4 * Add experimental setting for changing UI scaling`
* New [custom theme](https://github.com/dweymouth/supersonic/wiki/Custom-Themes) color keys: Hyperlink and PageHeader (theme file syntax "0.2")
* Added playback setting to force-disable server transcoding`, shortcutKey())
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* UI hang when playback slow to begin after clicking on grid view play buttons * Crash when repeatedly searching the All Tracks page quickly
* Crash when removing from the currently playing track to end of play queue` * What's New dialog sometimes continuing to re-show on subsequent launches
* Config settings sometimes not being saved due to abnormal exits
* Don't crash with zero-track albums or tracks with no artists
* Slightly improved the time it takes to check server connectivity`
) )