Prepare for 0.7.0 release

This commit is contained in:
Drew Weymouth
2023-11-07 07:56:38 -08:00
parent 4bbda87634
commit 4cb9bcd86f
4 changed files with 30 additions and 9 deletions
+13
View File
@@ -1,5 +1,18 @@
# Change Log # Change Log
## [0.7.0] - 2023-11-07
### Added
- [#263](https://github.com/dweymouth/supersonic/issues/263) "Quick Search" popup dialog to search entire library from any page
- [#245](https://github.com/dweymouth/supersonic/issues/245) UI Refresh and misc. internal improvements from moving to Fyne 2.4
- New [custom theme](https://github.com/dweymouth/supersonic/wiki/Custom-Themes) colors - Hyperlink and PageHeader
- Added support for displaying WEBP images (Thanks @adamantike!)
- Added playback setting to force disable server transcoding
### Fixed
- [#270](https://github.com/dweymouth/supersonic/issues/270) Crash when removing from the currently playing track to the end of the play queue
- UI hang if playback slow to begin after clicking on green play button on cover images
## [0.6.0] - 2023-10-23 ## [0.6.0] - 2023-10-23
### 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.6.0 app_version = 0.7.0
build: build:
go build go build
+15 -7
View File
@@ -61,21 +61,29 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2023-10-23" version="0.6.0"> <release date="2023-11-07" version="0.7.0">
<description> <description>
<p> <p>
Version 0.6.0 of Supersonic Version 0.7.0 of Supersonic
</p> </p>
<p> <p>
Added Added
</p> </p>
<ul> <ul>
<li>Support for multi-valued artists and genres through the new OpenSubsonic API extensions</li> <li>"Quick Search" popup dialog to search entire library from any page</li>
<li>Mac OS media center integration incl. media key support</li> <li>UI Refresh and misc. internal improvements from moving to Fyne 2.4</li>
<li>Sorting now enabled on genres and playlists list views</li> <li>New custom theme colors - Hyperlink and PageHeader</li>
<li>Sortable tracklist columns provide a visual indication on hover</li> <li>Added support for displaying WEBP images</li>
<li>"Rescan library" option added to settings menu to trigger a library scan on the server</li> <li>Added playback setting to force disable server transcoding</li>
</ul>
<p>
Fixed
</p>
<ul>
<li>Crash when removing from the currently playing track to the end of the play queue</li>
<li>UI hang if playback slow to begin after clicking on green play button on cover images</li>
</ul> </ul>
</description> </description>
+1 -1
View File
@@ -8,7 +8,7 @@ import (
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.6.0" AppVersion = "0.7.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"