Skip to content

Commit 08361fc

Browse files
committed
Prepare for 0.11.0 release
1 parent 1f761f2 commit 08361fc

4 files changed

+44
-15
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [0.11.0] - TBD
3+
## [0.11.0] - 2024-06-05
44

55
### Added / Changed
66
- Updated to Fyne 2.5, adds/fixes the following
@@ -20,7 +20,7 @@
2020
- [#165](https://github.com/dweymouth/supersonic/issues/165) Last track occasionally missing in album view depending on window size
2121
- [#383](https://github.com/dweymouth/supersonic/issues/383) Album filter button disappearing when restoring pages from history
2222
- [#391](https://github.com/dweymouth/supersonic/issues/391) Artist radio button sometimes plays radio for wrong artist
23-
- [#378](https://github.com/dweymouth/supersonic/issues/378) Home doesn't stay refreshed
23+
- [#378](https://github.com/dweymouth/supersonic/issues/378) Clicking Home button doesn't automatically refresh page
2424

2525

2626
## [0.10.1] - 2024-04-21

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
icon_path = ./res/appicon-512.png
22
app_name = Supersonic
3-
app_version = 0.10.1
3+
app_version = 0.11.0
44

55
build:
66
go build

res/io.github.dweymouth.supersonic.appdata.xml

+22-6
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,36 @@
6161
</screenshots>
6262

6363
<releases>
64-
<release date="2024-04-21" version="0.10.1">
64+
<release date="2024-06-05" version="0.11.0">
6565
<description>
6666
<p>
67-
Version 0.10.1 of Supersonic
67+
Version 0.11.0 of Supersonic
6868
</p>
6969

70+
<p>
71+
Added
72+
</p>
73+
<ul>
74+
<li>Automatically load fonts from the OS as needed to display CJK and other scripts</li>
75+
<li>Synced lyrics support and Jellyfin lyrics support</li>
76+
<li>LrcLib.net as a backup lyric source (disable in config file if desired)</li>
77+
<li>Improve UX of Add to Playlist dialog</li>
78+
<li>Show track thumbnails in tracklist views</li>
79+
<li>Support for internet radio stations for Subsonic servers</li>
80+
<li>New "option button" to right of current track title to bring up action menu</li>
81+
<li>Ctrl+{backspace/delete} to remove words in text inputs</li>
82+
<li>Improves performance and behavior of Random albums sort with upcoming Navidrome releases</li>
83+
<li>Dynamic gradient background on Now Playing page</li>
84+
</ul>
85+
7086
<p>
7187
Fixed
7288
</p>
7389
<ul>
74-
<li>Crashing when trying to add a new server</li>
75-
<li>Lyrics don't refresh when playing next song</li>
76-
<li>What's New dialog wasn't showing when launching updated version</li>
77-
<li>Crash on exit when saving play queue to server and no track playing</li>
90+
<li>Last track occasionally missing in album view depending on window size</li>
91+
<li>Album filter button disappearing when restoring pages from history</li>
92+
<li>Artist radio button sometimes plays radio for wrong artist</li>
93+
<li>Clicking Home button doesn't automatically refresh page</li>
7894
</ul>
7995

8096
</description>

res/metadata.go

+19-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package res
33
const (
44
AppName = "supersonic"
55
DisplayName = "Supersonic"
6-
AppVersion = "0.10.1"
6+
AppVersion = "0.11.0"
77
AppVersionTag = "v" + AppVersion
88
ConfigFile = "config.toml"
99
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,13 +13,26 @@ const (
1313
)
1414

1515
var (
16-
WhatsAdded = ``
16+
WhatsAdded = `
17+
## Added
18+
* Automatically load fonts from the OS as needed to display CJK and other scripts
19+
* Synced lyrics support and Jellyfin lyrics support
20+
* LrcLib.net as a backup lyric source (disable in config file if desired)
21+
* Improve UX of Add to Playlist dialog
22+
* Show track thumbnails in tracklist views
23+
* Support for internet radio stations for Subsonic servers
24+
* New "option button" to right of current track title to bring up action menu
25+
* Ctrl+{backspace/delete} to remove words in text inputs
26+
* New portable mode option
27+
* Improves performance and behavior of Random albums sort with upcoming Navidrome releases
28+
* Dynamic gradient background on Now Playing page
29+
`
1730

1831
WhatsFixed = `
1932
## Fixed
20-
* Crashing when trying to add a new server
21-
* Lyrics don't refresh when playing next song
22-
* What's New dialog wasn't showing when launching updated version
23-
* Crash on exit when saving play queue to server and no track playing
33+
* Last track occasionally missing in album view depending on window size
34+
* Album filter button disappearing when restoring pages from history
35+
* Artist radio button sometimes plays radio for wrong artist
36+
* Clicking Home button doesn't automatically refresh page
2437
`
2538
)

0 commit comments

Comments
 (0)