prepare for 0.15.1 release

This commit is contained in:
Drew Weymouth
2025-04-07 07:55:30 -07:00
parent 2ac0120e33
commit a479c554af
5 changed files with 16 additions and 27 deletions
+6
View File
@@ -1,5 +1,11 @@
# Change Log # Change Log
## [0.15.1]
### Fixed
- [#591](https://github.com/dweymouth/supersonic/pull/591) Fix crashing on playback on Windows
- Fix crashing when clicking on album filters button
## [0.15.0] ## [0.15.0]
### Added ### Added
+1 -1
View File
@@ -1,7 +1,7 @@
[Details] [Details]
Icon = "res/appicon-512.png" Icon = "res/appicon-512.png"
Name = "Supersonic" Name = "Supersonic"
Version = "0.15.0" Version = "0.15.1"
[LinuxAndBSD] [LinuxAndBSD]
Categories = ["Audio", "AudioVideo"] Categories = ["Audio", "AudioVideo"]
+4 -15
View File
@@ -63,29 +63,18 @@
</screenshots> </screenshots>
<releases> <releases>
<release date="2025-04-06" version="0.15.0"> <release date="2025-04-07" version="0.15.1">
<description> <description>
<p> <p>
Version 0.15.0 of Supersonic Version 0.15.1 of Supersonic
</p> </p>
<p>
Added
</p>
<ul>
<li>Add ability to cast playback to DLNA devices</li>
<li>Add ability to search tracks within playlist</li>
<li>Add context menu actions to items in "Search Everywhere" dialog</li>
<li>Make server requests timeout configurable and increase default timeout</li>
<li>New overlay animation when showing full size covers</li>
</ul>
<p> <p>
Fixed Fixed
</p> </p>
<ul> <ul>
<li>Wrong track scrobbled when skipping next</li> <li>Fix crashing on playback on Windows</li>
<li>Regression: searching the "All Tracks" page skips some results</li> <li>Fix crashing when clicking on album filters button</li>
</ul> </ul>
</description> </description>
+4 -10
View File
@@ -3,7 +3,7 @@ package res
const ( const (
AppName = "supersonic" AppName = "supersonic"
DisplayName = "Supersonic" DisplayName = "Supersonic"
AppVersion = "0.15.0" AppVersion = "0.15.1"
AppVersionTag = "v" + AppVersion AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml" ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic" GithubURL = "https://github.com/dweymouth/supersonic"
@@ -13,16 +13,10 @@ const (
) )
var ( var (
WhatsAdded = ` WhatsAdded = ``
## Added
* Add ability to cast playback to DLNA devices
* Add ability to search tracks within playlist
* Add context menu actions to items in "Search Everywhere" dialog
* Make server requests timeout configurable and increase default timeout
* New overlay animation when showing full size covers`
WhatsFixed = ` WhatsFixed = `
## Fixed ## Fixed
* Wrong track scrobbled when skipping next * Fix crashing on playback on Windows
* Regression: searching the "All Tracks" page skips some results` * Fix crashing when clicking on album filters button`
) )
+1 -1
View File
@@ -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.0" #define MyAppVersion "0.15.1"
#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"