prepare for 0.16.0 release
This commit is contained in:
@@ -1,5 +1,19 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [0.16.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [#519](https://github.com/dweymouth/supersonic/issues/519) Add click-to-seek to lyrics viewer for synced lyrics
|
||||||
|
- [#625](https://github.com/dweymouth/supersonic/issues/625) Allow customization of grid card size
|
||||||
|
- [#628](https://github.com/dweymouth/supersonic/issues/628) Add setting to request transcoding to a specific format/bitrate from server
|
||||||
|
- [#631](https://github.com/dweymouth/supersonic/pull/631) Japanese translation improvements
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
|
||||||
|
- [#612](https://github.com/dweymouth/supersonic/issues/612) Crashing with custom themes that change the Primary color
|
||||||
|
- [#619](https://github.com/dweymouth/supersonic/issues/619) Incorrect tracks removed from playlist if removing from searched view
|
||||||
|
|
||||||
|
|
||||||
## [0.15.2]
|
## [0.15.2]
|
||||||
|
|
||||||
### 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.15.2"
|
Version = "0.16.0"
|
||||||
|
|
||||||
[LinuxAndBSD]
|
[LinuxAndBSD]
|
||||||
Categories = ["Audio", "AudioVideo"]
|
Categories = ["Audio", "AudioVideo"]
|
||||||
|
|||||||
@@ -63,32 +63,29 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2025-04-25" version="0.15.2">
|
<release date="2025-06-16" version="0.16.0">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.15.2 of Supersonic
|
Version 0.16.0 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Added
|
Added
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Improvements across a few translations</li>
|
<li>Add click-to-seek to lyrics viewer for synced lyrics</li>
|
||||||
<li>BPM column added to tracklist</li>
|
<li>Allow customization of grid card size</li>
|
||||||
<li>Animate button overlays when mouse in/out of album grid</li>
|
<li>Add setting to request transcoding to a specific format/bitrate from server</li>
|
||||||
<li>Album grid play button now takes color from theme</li>
|
<li>Japanese translation improvements</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Crashing when loading locally saved play queue with files deleted from server</li>
|
<li>New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess</li>
|
||||||
<li>Occasionally crashing when removing tracks from quue via the pop-up queue</li>
|
<li>Crashing with custom themes that change the Primary color</li>
|
||||||
<li>Album info dialog wouldn't scroll long description text</li>
|
<li>Incorrect tracks removed from playlist if removing from searched view</li>
|
||||||
<li>Regression: Peak meter was broken since 0.15.0</li>
|
|
||||||
<li>Playlist descriptions and track comments with newlines could overflow on top of other UI elements</li>
|
|
||||||
<li>Remember scroll position when navigating the history back to an album or playlist page</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+8
-11
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.15.2"
|
AppVersion = "0.16.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,17 +15,14 @@ const (
|
|||||||
var (
|
var (
|
||||||
WhatsAdded = `
|
WhatsAdded = `
|
||||||
## Added
|
## Added
|
||||||
* Improvements across a few translations
|
* Add click-to-seek to lyrics viewer for synced lyrics
|
||||||
* BPM column added to tracklist
|
* Allow customization of grid card size
|
||||||
* Animate button overlays when mouse in/out of album grid
|
* Add setting to request transcoding to a specific format/bitrate from server
|
||||||
* Album grid play button now takes color from theme`
|
* Japanese translation improvements`
|
||||||
|
|
||||||
WhatsFixed = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* Crashing when loading locally saved play queue with files deleted from server
|
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
|
||||||
* Occasionally crashing when removing tracks from quue via the pop-up queue
|
* Crashing with custom themes that change the Primary color
|
||||||
* Album info dialog wouldn't scroll long description text
|
* Incorrect tracks removed from playlist if removing from searched view`
|
||||||
* Regression: Peak meter was broken since 0.15.0
|
|
||||||
* Playlist descriptions and track comments with newlines could overflow on top of other UI elements
|
|
||||||
* Remember scroll position when navigating the history back to an album or playlist page`
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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.15.2"
|
#define MyAppVersion "0.16.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