prepare for 0.15.1 release
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
# 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]
|
||||
|
||||
### Added
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
[Details]
|
||||
Icon = "res/appicon-512.png"
|
||||
Name = "Supersonic"
|
||||
Version = "0.15.0"
|
||||
Version = "0.15.1"
|
||||
|
||||
[LinuxAndBSD]
|
||||
Categories = ["Audio", "AudioVideo"]
|
||||
|
||||
@@ -63,29 +63,18 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release date="2025-04-06" version="0.15.0">
|
||||
<release date="2025-04-07" version="0.15.1">
|
||||
<description>
|
||||
<p>
|
||||
Version 0.15.0 of Supersonic
|
||||
Version 0.15.1 of Supersonic
|
||||
</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>
|
||||
Fixed
|
||||
</p>
|
||||
<ul>
|
||||
<li>Wrong track scrobbled when skipping next</li>
|
||||
<li>Regression: searching the "All Tracks" page skips some results</li>
|
||||
<li>Fix crashing on playback on Windows</li>
|
||||
<li>Fix crashing when clicking on album filters button</li>
|
||||
</ul>
|
||||
|
||||
</description>
|
||||
|
||||
+4
-10
@@ -3,7 +3,7 @@ package res
|
||||
const (
|
||||
AppName = "supersonic"
|
||||
DisplayName = "Supersonic"
|
||||
AppVersion = "0.15.0"
|
||||
AppVersion = "0.15.1"
|
||||
AppVersionTag = "v" + AppVersion
|
||||
ConfigFile = "config.toml"
|
||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||
@@ -13,16 +13,10 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
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`
|
||||
WhatsAdded = ``
|
||||
|
||||
WhatsFixed = `
|
||||
## Fixed
|
||||
* Wrong track scrobbled when skipping next
|
||||
* Regression: searching the "All Tracks" page skips some results`
|
||||
* Fix crashing on playback on Windows
|
||||
* Fix crashing when clicking on album filters button`
|
||||
)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Supersonic"
|
||||
#define MyAppVersion "0.15.0"
|
||||
#define MyAppVersion "0.15.1"
|
||||
#define MyAppPublisher "Drew Weymouth"
|
||||
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
||||
#define MyAppExeName "Supersonic.exe"
|
||||
|
||||
Reference in New Issue
Block a user