Prepare for 0.13.2 release
This commit is contained in:
@@ -1,5 +1,25 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [0.13.2]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- New translations: German, Japanese
|
||||||
|
- [#510](https://github.com/dweymouth/supersonic/pull/510) Setting in config dialog to choose app language, overriding the auto-selection
|
||||||
|
- [#490](https://github.com/dweymouth/supersonic/pull/490) Add config file setting to change how many tracks queued by "Play random"
|
||||||
|
- Clicking on playlist cover from playlist page shows cover in pop-up (like album page)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [#418](https://github.com/dweymouth/supersonic/issues/418) Fix regression in scrolling performance of album grid introduced in 0.12.0 (with "Show year in album grid" setting)
|
||||||
|
- [#477](https://github.com/dweymouth/supersonic/issues/477) Scroll to currently playing track when loading Now Playing page
|
||||||
|
- [#483](https://github.com/dweymouth/supersonic/issues/483) Track with new sample rate failing to begin playback on Windows
|
||||||
|
- [#487](https://github.com/dweymouth/supersonic/issues/487) Removing track from a playlist would remove all copies of it
|
||||||
|
- [#495](https://github.com/dweymouth/supersonic/issues/495) Use custom HTTP User-Agent to avoid being blocked by some WAF servers
|
||||||
|
- [#506](https://github.com/dweymouth/supersonic/issues/506) Other scroll improvements: increase base scrolling speed, add keybindings for PageUp/PageDown
|
||||||
|
- Some performance improvements from updating to Fyne 2.5.3
|
||||||
|
- Ensure clicking outside of tracklists can always unselect selection
|
||||||
|
- A few translation updates
|
||||||
|
- Wrong tooltip on repeat control
|
||||||
|
|
||||||
## [0.13.1]
|
## [0.13.1]
|
||||||
|
|
||||||
### 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.13.1"
|
Version = "0.13.2"
|
||||||
|
|
||||||
[LinuxAndBSD]
|
[LinuxAndBSD]
|
||||||
Categories = ["Audio", "AudioVideo"]
|
Categories = ["Audio", "AudioVideo"]
|
||||||
|
|||||||
@@ -61,34 +61,36 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2024-08-20" version="0.13.1">
|
<release date="2024-12-21" version="0.13.2">
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
Version 0.13.1 of Supersonic
|
Version 0.13.2 of Supersonic
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Added
|
Added
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>New translations: French, Polish, Portuguese (Brazillian), Romanian, Spanish</li>
|
<li>New translations: German, Japanese</li>
|
||||||
<li>Add tool tips to buttons and truncated labels</li>
|
<li>Setting in config dialog to choose app language</li>
|
||||||
<li>Remember the "skip duplicate tracks" setting when adding tracks to playlists</li>
|
<li>Add config file setting to change how many tracks queued by "Play random"</li>
|
||||||
<li>Switch sorting on All Tracks page to recently added</li>
|
<li>Clicking on playlist cover from playlist page shows cover in pop-up</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Fixed
|
Fixed
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Custom themes didn't work on Windows</li>
|
<li>Fix regression in scrolling performance of album grid introduced in 0.12.0</li>
|
||||||
<li>Pop up play queue crashing on Windows</li>
|
<li>Scroll to currently playing track when loading Now Playing page</li>
|
||||||
<li>Fixed "jumpy" scrolling on MacOS</li>
|
<li>Track with new sample rate failing to begin playback on Windows</li>
|
||||||
<li>Window sometimes misdrawing on startup for Linux (even better fix than last time)</li>
|
<li>Removing track from a playlist would remove all copies of it</li>
|
||||||
<li>Crash when rendering certain bitmap fonts</li>
|
<li>Use custom HTTP User-Agent to avoid being blocked by some WAF servers</li>
|
||||||
<li>Fixed some more memory leaks from communicating with MPV</li>
|
<li>Increase base scrolling speed, add keybindings for PageUp/PageDown</li>
|
||||||
<li>Missing space in error dialog text for sharing</li>
|
<li>Some performance improvements from updating to Fyne 2.5.3</li>
|
||||||
<li>Play queue sometimes not saving on exit</li>
|
<li>Ensure clicking outside of tracklists can always unselect selection</li>
|
||||||
|
<li>A few translation updates</li>
|
||||||
|
<li>Wrong tooltip on repeat control</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
+15
-13
@@ -3,7 +3,7 @@ package res
|
|||||||
const (
|
const (
|
||||||
AppName = "supersonic"
|
AppName = "supersonic"
|
||||||
DisplayName = "Supersonic"
|
DisplayName = "Supersonic"
|
||||||
AppVersion = "0.13.1"
|
AppVersion = "0.13.2"
|
||||||
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,19 +15,21 @@ const (
|
|||||||
var (
|
var (
|
||||||
WhatsAdded = `
|
WhatsAdded = `
|
||||||
## Added
|
## Added
|
||||||
* New translations: French, Polish, Portuguese (Brazillian), Romanian, Spanish
|
* New translations: German, Japanese
|
||||||
* Add tool tips to buttons and truncated labels
|
* Setting in config dialog to choose app language
|
||||||
* Remember the "skip duplicate tracks" setting when adding tracks to playlists
|
* Add config file setting to change how many tracks queued by "Play random"
|
||||||
* Switch sorting on All Tracks page to recently added`
|
* Clicking on playlist cover from playlist page shows cover in pop-up (like album page)`
|
||||||
|
|
||||||
WhatsFixed = `
|
WhatsFixed = `
|
||||||
## Fixed
|
## Fixed
|
||||||
* Custom themes didn't work on Windows
|
* Fix regression in scrolling performance of album grid introduced in 0.12.0
|
||||||
* Pop up play queue crashing on Windows
|
* Scroll to currently playing track when loading Now Playing page
|
||||||
* Fixed "jumpy" scrolling on MacOS
|
* Track with new sample rate failing to begin playback on Windows
|
||||||
* Window sometimes misdrawing on startup for Linux (even better fix than last time)
|
* Removing track from a playlist would remove all copies of it
|
||||||
* Crash when rendering certain bitmap fonts
|
* Use custom HTTP User-Agent to avoid being blocked by some WAF servers
|
||||||
* Fixed some more memory leaks from communicating with MPV
|
* Increase base scrolling speed, add keybindings for PageUp/PageDown
|
||||||
* Missing space in error dialog text for sharing
|
* Some performance improvements from updating to Fyne 2.5.3
|
||||||
* Play queue sometimes not saving on exit`
|
* Ensure clicking outside of tracklists can always unselect selection
|
||||||
|
* A few translation updates
|
||||||
|
* Wrong tooltip on repeat control`
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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.13.1"
|
#define MyAppVersion "0.13.2"
|
||||||
#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