Skip to content

Commit

Permalink
prepare for 0.13.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Aug 20, 2024
1 parent 62803b9 commit 91964d9
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 40 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
- [#440](https://github.com/dweymouth/supersonic/issues/440) Crash when rendering certain bitmap fonts
- Fixed some more memory leaks from communicating with MPV
- [#446](https://github.com/dweymouth/supersonic/issues/446) Missing space in error dialog text for sharing
- Play queue sometimes not saving on exit
- Pop up play queue crashing on Windows

## [0.13.0] - 2024-07-28

Expand Down
2 changes: 1 addition & 1 deletion FyneApp.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Details]
Icon = "res/appicon-512.png"
Name = "Supersonic"
Version = "0.13.0"
Version = "0.13.1"

[LinuxAndBSD]
Categories = ["Audio", "AudioVideo"]
Expand Down
35 changes: 15 additions & 20 deletions res/io.github.dweymouth.supersonic.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,39 +61,34 @@
</screenshots>

<releases>
<release date="2024-07-28" version="0.13.0">
<release date="2024-08-20" version="0.13.1">
<description>
<p>
Version 0.13.0 of Supersonic
Version 0.13.1 of Supersonic
</p>

<p>
Added
</p>
<ul>
<li>Add support for translations, and add Chinese and Italian translations</li>
<li>Add a peak/RMS meter visualization</li>
<li>Add track info dialog and context menu item</li>
<li>Add support for Composer (new tracklist column, and row in Track Info dialog)</li>
<li>Use artist sortName for sorting artist grid by name, if present</li>
<li>Add button to sort artist discography by name or year (asc or desc)</li>
<li>Prevent Windows from sleeping while music playing</li>
<li>Add a new button below the volume control to show a pop-up play queue</li>
<li>Add a config file option to disable SSL/TLS validation (useful for self-signed certificates)</li>
</ul>
<li>New translations: French, Polish, Portuguese (Brazillian), Romanian, Spanish</li>
<li>Add tool tips to buttons and truncated labels</li>
<li>Remember the "skip duplicate tracks" setting when adding tracks to playlists</li>
<li>Switch sorting on All Tracks page to recently added</li>
</ul>

<p>
Fixed
</p>
<ul>
<li>Japanese and possibly other scripts not truncating properly in grid views</li>
<li>Crash if navigating away from Artist page before cover image loaded</li>
<li>Regression in not detecting dark/light mode for Linux</li>
<li>Artist page not loading artist image for servers that don't support artist largeImageURL</li>
<li>Memory leak when querying certain MPV properties</li>
<li>Fixed handling of multiple instances of the same track in the play queue</li>
<li>Improve metadata in Linux .desktop file</li>
<li>Window occasionally misrendered into smaller space on opening for Linux over xwayland (more reliable fix than last release)</li>
<li>Custom themes didn't work on Windows</li>
<li>Pop up play queue crashing on Windows</li>
<li>Fixed "jumpy" scrolling on MacOS</li>
<li>Window sometimes misdrawing on startup for Linux (even better fix than last time)</li>
<li>Crash when rendering certain bitmap fonts</li>
<li>Fixed some more memory leaks from communicating with MPV</li>
<li>Missing space in error dialog text for sharing</li>
<li>Play queue sometimes not saving on exit</li>
</ul>

</description>
Expand Down
31 changes: 13 additions & 18 deletions res/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.13.0"
AppVersion = "0.13.1"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
Expand All @@ -15,24 +15,19 @@ const (
var (
WhatsAdded = `
## Added
* Add support for translations, and add Chinese and Italian translations
* Add a peak/RMS meter visualization
* Add track info dialog and context menu item
* Add support for Composer (new tracklist column, and row in Track Info dialog)
* Use artist sortName for sorting artist grid by name, if present
* Add button to sort artist discography by name or year (asc or desc)
* Prevent Windows from sleeping while music playing
* Add a new button below the volume control to show a pop-up play queue
* Add a config file option to disable SSL/TLS validation (useful for self-signed certificates)`
* New translations: French, Polish, Portuguese (Brazillian), Romanian, Spanish
* Add tool tips to buttons and truncated labels
* Remember the "skip duplicate tracks" setting when adding tracks to playlists
* Switch sorting on All Tracks page to recently added`

WhatsFixed = `
## Fixed
* Japanese and possibly other scripts not truncating properly in grid views
* Crash if navigating away from Artist page before cover image loaded
* Regression in not detecting dark/light mode for Linux
* Artist page not loading artist image for servers that don't support artist largeImageURL
* Memory leak when querying certain MPV properties
* Fixed handling of multiple instances of the same track in the play queue
* Improve metadata in Linux .desktop file
* Window occasionally misrendered into smaller space on opening for Linux over xwayland (more reliable fix than last release)`
* Custom themes didn't work on Windows
* Pop up play queue crashing on Windows
* Fixed "jumpy" scrolling on MacOS
* Window sometimes misdrawing on startup for Linux (even better fix than last time)
* Crash when rendering certain bitmap fonts
* Fixed some more memory leaks from communicating with MPV
* Missing space in error dialog text for sharing
* Play queue sometimes not saving on exit`
)
2 changes: 1 addition & 1 deletion win_inno_installscript.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Supersonic"
#define MyAppVersion "0.12.0"
#define MyAppVersion "0.13.1"
#define MyAppPublisher "Drew Weymouth"
#define MyAppURL "https://github.com/dweymouth/supersonic"
#define MyAppExeName "Supersonic.exe"
Expand Down

0 comments on commit 91964d9

Please sign in to comment.