Skip to content

Commit f8d64c7

Browse files
committed
prepare for 0.17.0 release
1 parent 1e9b6cb commit f8d64c7

File tree

5 files changed

+46
-18
lines changed

5 files changed

+46
-18
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## [0.17.0]
4+
5+
### Added
6+
- [#654](https://github.com/dweymouth/supersonic/pull/654) Group releases by Release Type on artist pages
7+
- [#655](https://github.com/dweymouth/supersonic/pull/655) Allow browsing a specific music library for servers that expose multiple libraries
8+
- New translations: Korean (thanks @janghw4!) and Russian (thanks @alxrem!)
9+
- Some updates to other translations
10+
11+
### Fixed
12+
- [#451](https://github.com/dweymouth/supersonic/issues/451) Light button colors in a light theme turn dark when hovering
13+
- [#646](https://github.com/dweymouth/supersonic/issues/646) Use full date instead of year to sort artist discography
14+
- Improved rendering of text entry borders when using fractional pixel scaling
15+
- [#611](https://github.com/dweymouth/supersonic/issues/611) Windows: occasional crashes at startup
16+
- [#624](https://github.com/dweymouth/supersonic/issues/624) Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
17+
- [#520](https://github.com/dweymouth/supersonic/issues/520) Windows: TLS versions above 1.2 not supported by shipped libmpv-2
18+
- [#536](https://github.com/dweymouth/supersonic/issues/536) Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
19+
- [#647](https://github.com/dweymouth/supersonic/issues/647) Windows: some radio stream URLs wouldn't play
20+
321
## [0.16.0]
422

523
### Added

FyneApp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[Details]
22
Icon = "res/appicon-512.png"
33
Name = "Supersonic"
4-
Version = "0.16.0"
4+
Version = "0.17.0"
55

66
[LinuxAndBSD]
77
Categories = ["Audio", "AudioVideo"]

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

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,29 +63,34 @@
6363
</screenshots>
6464

6565
<releases>
66-
<release date="2025-06-16" version="0.16.0">
66+
<release date="2025-07-16" version="0.17.0">
6767
<description>
6868
<p>
69-
Version 0.16.0 of Supersonic
69+
Version 0.17.0 of Supersonic
7070
</p>
7171

7272
<p>
7373
Added
7474
</p>
7575
<ul>
76-
<li>Add click-to-seek to lyrics viewer for synced lyrics</li>
76+
<li>Group releases by Release Type on artist pages</li>
7777
<li>Allow customization of grid card size</li>
78-
<li>Add setting to request transcoding to a specific format/bitrate from server</li>
79-
<li>Japanese translation improvements</li>
78+
<li>New translations: Korean and Russian</li>
79+
<li>Some updates to other translations</li>
8080
</ul>
8181

8282
<p>
8383
Fixed
8484
</p>
8585
<ul>
86-
<li>New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess</li>
87-
<li>Crashing with custom themes that change the Primary color</li>
88-
<li>Incorrect tracks removed from playlist if removing from searched view</li>
86+
<li>Light button colors in a light theme turn dark when hovering</li>
87+
<li>Use full date instead of year to sort artist discography</li>
88+
<li>Improved rendering of text entry borders when using fractional pixel scaling</li>
89+
<li>Windows: occasional crashes at startup</li>
90+
<li>Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL</li>
91+
<li>Windows: TLS versions above 1.2 not supported by shipped libmpv-2</li>
92+
<li>Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)</li>
93+
<li>Windows: some radio stream URLs wouldn't play</li>
8994
</ul>
9095

9196
</description>

res/metadata.go

Lines changed: 13 additions & 8 deletions
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.16.0"
6+
AppVersion = "0.17.0"
77
AppVersionTag = "v" + AppVersion
88
ConfigFile = "config.toml"
99
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,14 +15,19 @@ const (
1515
var (
1616
WhatsAdded = `
1717
## Added
18-
* Add click-to-seek to lyrics viewer for synced lyrics
19-
* Allow customization of grid card size
20-
* Add setting to request transcoding to a specific format/bitrate from server
21-
* Japanese translation improvements`
18+
* Group releases by Release Type on artist pages
19+
* Allow browsing a specific music library for servers that expose multiple libraries
20+
* New translations: Korean and Russian
21+
* Some updates to other translations`
2222

2323
WhatsFixed = `
2424
## Fixed
25-
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
26-
* Crashing with custom themes that change the Primary color
27-
* Incorrect tracks removed from playlist if removing from searched view`
25+
* Light button colors in a light theme turn dark when hovering
26+
* Use full date instead of year to sort artist discography
27+
* Improved rendering of text entry borders when using fractional pixel scaling
28+
* Windows: occasional crashes at startup
29+
* Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
30+
* Windows: TLS versions above 1.2 not supported by shipped libmpv-2
31+
* Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
32+
* Windows: some radio stream URLs wouldn't play`
2833
)

win_inno_installscript.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Supersonic"
5-
#define MyAppVersion "0.16.0"
5+
#define MyAppVersion "0.17.0"
66
#define MyAppPublisher "Drew Weymouth"
77
#define MyAppURL "https://github.com/dweymouth/supersonic"
88
#define MyAppExeName "Supersonic.exe"

0 commit comments

Comments
 (0)