Skip to content

Commit

Permalink
Prepare for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Nov 7, 2023
1 parent 4bbda87 commit 4cb9bcd
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# 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

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
icon_path = ./res/appicon-512.png
app_name = Supersonic
app_version = 0.6.0
app_version = 0.7.0

build:
go build
Expand Down
22 changes: 15 additions & 7 deletions res/io.github.dweymouth.supersonic.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,29 @@
</screenshots>

<releases>
<release date="2023-10-23" version="0.6.0">
<release date="2023-11-07" version="0.7.0">
<description>
<p>
Version 0.6.0 of Supersonic
Version 0.7.0 of Supersonic
</p>

<p>
Added
</p>
<ul>
<li>Support for multi-valued artists and genres through the new OpenSubsonic API extensions</li>
<li>Mac OS media center integration incl. media key support</li>
<li>Sorting now enabled on genres and playlists list views</li>
<li>Sortable tracklist columns provide a visual indication on hover</li>
<li>"Rescan library" option added to settings menu to trigger a library scan on the server</li>
<li>"Quick Search" popup dialog to search entire library from any page</li>
<li>UI Refresh and misc. internal improvements from moving to Fyne 2.4</li>
<li>New custom theme colors - Hyperlink and PageHeader</li>
<li>Added support for displaying WEBP images</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>

</description>
Expand Down
2 changes: 1 addition & 1 deletion res/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.6.0"
AppVersion = "0.7.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
Expand Down

0 comments on commit 4cb9bcd

Please sign in to comment.