prepare for 0.17.0 release
This commit is contained in:
@@ -1,5 +1,23 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [0.17.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [#654](https://github.com/dweymouth/supersonic/pull/654) Group releases by Release Type on artist pages
|
||||||
|
- [#655](https://github.com/dweymouth/supersonic/pull/655) Allow browsing a specific music library for servers that expose multiple libraries
|
||||||
|
- New translations: Korean (thanks @janghw4!) and Russian (thanks @alxrem!)
|
||||||
|
- Some updates to other translations
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [#451](https://github.com/dweymouth/supersonic/issues/451) Light button colors in a light theme turn dark when hovering
|
||||||
|
- [#646](https://github.com/dweymouth/supersonic/issues/646) Use full date instead of year to sort artist discography
|
||||||
|
- Improved rendering of text entry borders when using fractional pixel scaling
|
||||||
|
- [#611](https://github.com/dweymouth/supersonic/issues/611) Windows: occasional crashes at startup
|
||||||
|
- [#624](https://github.com/dweymouth/supersonic/issues/624) Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
|
||||||
|
- [#520](https://github.com/dweymouth/supersonic/issues/520) Windows: TLS versions above 1.2 not supported by shipped libmpv-2
|
||||||
|
- [#536](https://github.com/dweymouth/supersonic/issues/536) Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
|
||||||
|
- [#647](https://github.com/dweymouth/supersonic/issues/647) Windows: some radio stream URLs wouldn't play
|
||||||
|
|
||||||
## [0.16.0]
|
## [0.16.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
[Details]
|
[Details]
|
||||||
Icon = "res/appicon-512.png"
|
Icon = "res/appicon-512.png"
|
||||||
Name = "Supersonic"
|
Name = "Supersonic"
|
||||||
Version = "0.16.0"
|
Version = "0.17.0"
|
||||||
|
|
||||||
[LinuxAndBSD]
|
[LinuxAndBSD]
|
||||||
Categories = ["Audio", "AudioVideo"]
|
Categories = ["Audio", "AudioVideo"]
|
||||||
|
|||||||
@@ -63,29 +63,34 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2025-06-16" version="0.16.0">
|
<release date="2025-07-16" version="0.17.0">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.16.0 of Supersonic
|
Version 0.17.0 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Added
|
Added
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add click-to-seek to lyrics viewer for synced lyrics</li>
|
<li>Group releases by Release Type on artist pages</li>
|
||||||
<li>Allow customization of grid card size</li>
|
<li>Allow customization of grid card size</li>
|
||||||
<li>Add setting to request transcoding to a specific format/bitrate from server</li>
|
<li>New translations: Korean and Russian</li>
|
||||||
<li>Japanese translation improvements</li>
|
<li>Some updates to other translations</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess</li>
|
<li>Light button colors in a light theme turn dark when hovering</li>
|
||||||
<li>Crashing with custom themes that change the Primary color</li>
|
<li>Use full date instead of year to sort artist discography</li>
|
||||||
<li>Incorrect tracks removed from playlist if removing from searched view</li>
|
<li>Improved rendering of text entry borders when using fractional pixel scaling</li>
|
||||||
|
<li>Windows: occasional crashes at startup</li>
|
||||||
|
<li>Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL</li>
|
||||||
|
<li>Windows: TLS versions above 1.2 not supported by shipped libmpv-2</li>
|
||||||
|
<li>Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)</li>
|
||||||
|
<li>Windows: some radio stream URLs wouldn't play</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+13
-8
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.16.0"
|
AppVersion = "0.17.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"
|
||||||
@@ -15,14 +15,19 @@ const (
|
|||||||
var (
|
var (
|
||||||
WhatsAdded = `
|
WhatsAdded = `
|
||||||
## Added
|
## Added
|
||||||
* Add click-to-seek to lyrics viewer for synced lyrics
|
* Group releases by Release Type on artist pages
|
||||||
* Allow customization of grid card size
|
* Allow browsing a specific music library for servers that expose multiple libraries
|
||||||
* Add setting to request transcoding to a specific format/bitrate from server
|
* New translations: Korean and Russian
|
||||||
* Japanese translation improvements`
|
* Some updates to other translations`
|
||||||
|
|
||||||
WhatsFixed = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
|
* Light button colors in a light theme turn dark when hovering
|
||||||
* Crashing with custom themes that change the Primary color
|
* Use full date instead of year to sort artist discography
|
||||||
* Incorrect tracks removed from playlist if removing from searched view`
|
* Improved rendering of text entry borders when using fractional pixel scaling
|
||||||
|
* Windows: occasional crashes at startup
|
||||||
|
* Windows: sporadic crashes when changing tracks due to bugs in SMTC DLL
|
||||||
|
* Windows: TLS versions above 1.2 not supported by shipped libmpv-2
|
||||||
|
* Windows: 32-bit (fixed-point) FLAC files cannot be played (libmpv built before ffmpeg support existed)
|
||||||
|
* Windows: some radio stream URLs wouldn't play`
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
#define MyAppName "Supersonic"
|
#define MyAppName "Supersonic"
|
||||||
#define MyAppVersion "0.16.0"
|
#define MyAppVersion "0.17.0"
|
||||||
#define MyAppPublisher "Drew Weymouth"
|
#define MyAppPublisher "Drew Weymouth"
|
||||||
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
||||||
#define MyAppExeName "Supersonic.exe"
|
#define MyAppExeName "Supersonic.exe"
|
||||||
|
|||||||
Reference in New Issue
Block a user