prepare for 0.17.0 release
This commit is contained in:
@@ -1,5 +1,23 @@
|
||||
# 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]
|
||||
|
||||
### Added
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
[Details]
|
||||
Icon = "res/appicon-512.png"
|
||||
Name = "Supersonic"
|
||||
Version = "0.16.0"
|
||||
Version = "0.17.0"
|
||||
|
||||
[LinuxAndBSD]
|
||||
Categories = ["Audio", "AudioVideo"]
|
||||
|
||||
@@ -63,29 +63,34 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release date="2025-06-16" version="0.16.0">
|
||||
<release date="2025-07-16" version="0.17.0">
|
||||
<description>
|
||||
<p>
|
||||
Version 0.16.0 of Supersonic
|
||||
Version 0.17.0 of Supersonic
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Added
|
||||
</p>
|
||||
<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>Add setting to request transcoding to a specific format/bitrate from server</li>
|
||||
<li>Japanese translation improvements</li>
|
||||
<li>New translations: Korean and Russian</li>
|
||||
<li>Some updates to other translations</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Fixed
|
||||
</p>
|
||||
<ul>
|
||||
<li>New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess</li>
|
||||
<li>Crashing with custom themes that change the Primary color</li>
|
||||
<li>Incorrect tracks removed from playlist if removing from searched view</li>
|
||||
<li>Light button colors in a light theme turn dark when hovering</li>
|
||||
<li>Use full date instead of year to sort artist discography</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>
|
||||
|
||||
</description>
|
||||
|
||||
+13
-8
@@ -3,7 +3,7 @@ package res
|
||||
const (
|
||||
AppName = "supersonic"
|
||||
DisplayName = "Supersonic"
|
||||
AppVersion = "0.16.0"
|
||||
AppVersion = "0.17.0"
|
||||
AppVersionTag = "v" + AppVersion
|
||||
ConfigFile = "config.toml"
|
||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||
@@ -15,14 +15,19 @@ const (
|
||||
var (
|
||||
WhatsAdded = `
|
||||
## Added
|
||||
* Add click-to-seek to lyrics viewer for synced lyrics
|
||||
* Allow customization of grid card size
|
||||
* Add setting to request transcoding to a specific format/bitrate from server
|
||||
* Japanese translation improvements`
|
||||
* Group releases by Release Type on artist pages
|
||||
* Allow browsing a specific music library for servers that expose multiple libraries
|
||||
* New translations: Korean and Russian
|
||||
* Some updates to other translations`
|
||||
|
||||
WhatsFixed = `
|
||||
## Fixed
|
||||
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
|
||||
* Crashing with custom themes that change the Primary color
|
||||
* Incorrect tracks removed from playlist if removing from searched view`
|
||||
* Light button colors in a light theme turn dark when hovering
|
||||
* Use full date instead of year to sort artist discography
|
||||
* 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!
|
||||
|
||||
#define MyAppName "Supersonic"
|
||||
#define MyAppVersion "0.16.0"
|
||||
#define MyAppVersion "0.17.0"
|
||||
#define MyAppPublisher "Drew Weymouth"
|
||||
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
||||
#define MyAppExeName "Supersonic.exe"
|
||||
|
||||
Reference in New Issue
Block a user