prepare for 0.18.0 release

This commit is contained in:
Drew Weymouth
2025-08-12 08:30:02 -07:00
parent 22ae0baa37
commit 60d1e78fcc
5 changed files with 31 additions and 37 deletions
+11
View File
@@ -1,5 +1,16 @@
# Change Log
## [0.18.0]
### Added
- [#665](https://github.com/dweymouth/supersonic/issues/665) Make play button on Albums page configurable to shuffle or play in order
- [#668](https://github.com/dweymouth/supersonic/issues/668) Add sample rate, bit depth, and channel count to track info dialog
- [#669](https://github.com/dweymouth/supersonic/pull/669) Add waveform seekbar
- [#671](https://github.com/dweymouth/supersonic/pull/671) Add CLI commands to start minimized, and to show/raise the app window
- [#674](https://github.com/dweymouth/supersonic/pull/674) Add CLI commands to search and play albums, tracks, and playlists
- [#679](https://github.com/dweymouth/supersonic/pull/679) Add player control buttons to Windows taskbar thumbnail
- [#681](https://github.com/dweymouth/supersonic/pull/681) Add ability to stop playback after current track finishes
## [0.17.0]
### Added
+1 -1
View File
@@ -1,7 +1,7 @@
[Details]
Icon = "res/appicon-512.png"
Name = "Supersonic"
Version = "0.17.0"
Version = "0.18.0"
[LinuxAndBSD]
Categories = ["Audio", "AudioVideo"]
+9 -20
View File
@@ -63,34 +63,23 @@
</screenshots>
<releases>
<release date="2025-07-16" version="0.17.0">
<release date="2025-08-12" version="0.18.0">
<description>
<p>
Version 0.17.0 of Supersonic
Version 0.18.0 of Supersonic
</p>
<p>
Added
</p>
<ul>
<li>Group releases by Release Type on artist pages</li>
<li>Allow customization of grid card size</li>
<li>New translations: Korean and Russian</li>
<li>Some updates to other translations</li>
</ul>
<p>
Fixed
</p>
<ul>
<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>
<li>Make play button on Albums page configurable to shuffle or play in order</li>
<li>Add sample rate, bit depth, and channel count to track info dialog</li>
<li>Add waveform seekbar</li>
<li>Add CLI commands to start minimized, and to show/raise the app window</li>
<li>Add CLI commands to search and play albums, tracks, and playlists</li>
<li>Add player control buttons to Windows taskbar thumbnail</li>
<li>Add ability to stop playback after current track finishes</li>
</ul>
</description>
+9 -15
View File
@@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.17.0"
AppVersion = "0.18.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
@@ -15,19 +15,13 @@ const (
var (
WhatsAdded = `
## Added
* 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`
* Make play button on Albums page configurable to shuffle or play in order
* Add sample rate, bit depth, and channel count to track info dialog
* Add waveform seekbar
* Add CLI commands to start minimized, and to show/raise the app window
* Add CLI commands to search and play albums, tracks, and playlists
* Add player control buttons to Windows taskbar thumbnail
* Add ability to stop playback after current track finishes`
WhatsFixed = `
## Fixed
* 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`
WhatsFixed = ``
)
+1 -1
View File
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Supersonic"
#define MyAppVersion "0.17.0"
#define MyAppVersion "0.18.0"
#define MyAppPublisher "Drew Weymouth"
#define MyAppURL "https://github.com/dweymouth/supersonic"
#define MyAppExeName "Supersonic.exe"