prepare for 0.18.1 release
This commit is contained in:
@@ -1,5 +1,22 @@
|
||||
# Change Log
|
||||
|
||||
## [0.18.1]
|
||||
|
||||
### Added
|
||||
- [#696](https://github.com/dweymouth/supersonic/issues/696) Save and use the most recently selected music library when re-launching app
|
||||
- [#697](https://github.com/dweymouth/supersonic/issues/697) Add Artists to the supported list of startup pages
|
||||
|
||||
### Fixed
|
||||
- [#412](https://github.com/dweymouth/supersonic/issues/412) Occasionally crashing on Linux when monitors go idle
|
||||
- [#419](https://github.com/dweymouth/supersonic/issues/419) AppImage: failing to start due to "No GLXFBConfigs returned"
|
||||
- [#658](https://github.com/dweymouth/supersonic/issues/658) Rework format for now playing status line
|
||||
- [#664](https://github.com/dweymouth/supersonic/issues/664) AppImage: failing to start on openSUSE-Tumbleweed and CachyOS
|
||||
- [#423](https://github.com/dweymouth/supersonic/issues/423) Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)
|
||||
- [#666](https://github.com/dweymouth/supersonic/issues/666) Fail to start on Windows ARM64 or older x64 CPUs
|
||||
- [#690](https://github.com/dweymouth/supersonic/issues/690) Search results limited to 20 items
|
||||
- [#691](https://github.com/dweymouth/supersonic/issues/691) Transcoding not working with Jellyfin
|
||||
- [#703](https://github.com/dweymouth/supersonic/issues/703) Crashing on "Shuffle albums" if fewer than 20 albums available
|
||||
|
||||
## [0.18.0]
|
||||
|
||||
### Added
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
[Details]
|
||||
Icon = "res/appicon-512.png"
|
||||
Name = "Supersonic"
|
||||
Version = "0.18.0"
|
||||
Version = "0.18.1"
|
||||
|
||||
[LinuxAndBSD]
|
||||
Categories = ["Audio", "AudioVideo"]
|
||||
|
||||
@@ -63,23 +63,33 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release date="2025-08-12" version="0.18.0">
|
||||
<release date="2025-09-13" version="0.18.1">
|
||||
<description>
|
||||
<p>
|
||||
Version 0.18.0 of Supersonic
|
||||
Version 0.18.1 of Supersonic
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Added
|
||||
</p>
|
||||
<ul>
|
||||
<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>
|
||||
<li>Save and use the most recently selected music library when re-launching app</li>
|
||||
<li>Add Artists to the supported list of startup pages</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Fixed
|
||||
</p>
|
||||
<ul>
|
||||
<li>Occasionally crashing on Linux when monitors go idle</li>
|
||||
<li>AppImage: failing to start due to "No GLXFBConfigs returned</li>
|
||||
<li>AppImage: failing to start on openSUSE-Tumbleweed and CachyOS</li>
|
||||
<li>Rework format for now playing status line</li>
|
||||
<li>Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)</li>
|
||||
<li>Fail to start on Windows ARM64 or older x64 CPUs</li>
|
||||
<li>Search results limited to 20 items</li>
|
||||
<li>Transcoding not working with Jellyfin</li>
|
||||
<li>Crashing on "Shuffle albums" if fewer than 20 albums available</li>
|
||||
</ul>
|
||||
|
||||
</description>
|
||||
|
||||
+14
-9
@@ -3,7 +3,7 @@ package res
|
||||
const (
|
||||
AppName = "supersonic"
|
||||
DisplayName = "Supersonic"
|
||||
AppVersion = "0.18.0"
|
||||
AppVersion = "0.18.1"
|
||||
AppVersionTag = "v" + AppVersion
|
||||
ConfigFile = "config.toml"
|
||||
GithubURL = "https://github.com/dweymouth/supersonic"
|
||||
@@ -15,13 +15,18 @@ const (
|
||||
var (
|
||||
WhatsAdded = `
|
||||
## Added
|
||||
* 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`
|
||||
* Save and use the most recently selected music library when re-launching app
|
||||
* Add Artists to the supported list of startup pages`
|
||||
|
||||
WhatsFixed = ``
|
||||
WhatsFixed = `
|
||||
## Fixed
|
||||
* Occasionally crashing on Linux when monitors go idle
|
||||
* AppImage: failing to start due to "No GLXFBConfigs returned
|
||||
* AppImage: failing to start on openSUSE-Tumbleweed and CachyOS
|
||||
* Rework format for now playing status line
|
||||
* Silenty failing to add large number of tracks to playlist (OpenSubsonic servers)
|
||||
* Fail to start on Windows ARM64 or older x64 CPUs
|
||||
* Search results limited to 20 items
|
||||
* Transcoding not working with Jellyfin
|
||||
* Crashing on "Shuffle albums" if fewer than 20 albums available`
|
||||
)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Supersonic"
|
||||
#define MyAppVersion "0.18.0"
|
||||
#define MyAppVersion "0.18.1"
|
||||
#define MyAppPublisher "Drew Weymouth"
|
||||
#define MyAppURL "https://github.com/dweymouth/supersonic"
|
||||
#define MyAppExeName "Supersonic.exe"
|
||||
|
||||
Reference in New Issue
Block a user