Skip to content

Commit

Permalink
Prepare for 0.13.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Dec 21, 2024
1 parent 3ced9f8 commit 37f678e
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 29 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# 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]

### Added
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.1"
Version = "0.13.2"

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

<releases>
<release date="2024-08-20" version="0.13.1">
<release date="2024-12-21" version="0.13.2">
<description>
<p>
Version 0.13.1 of Supersonic
Version 0.13.2 of Supersonic
</p>

<p>
Added
</p>
<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>
<li>New translations: German, Japanese</li>
<li>Setting in config dialog to choose app language</li>
<li>Add config file setting to change how many tracks queued by "Play random"</li>
<li>Clicking on playlist cover from playlist page shows cover in pop-up</li>
</ul>

<p>
Fixed
</p>
<ul>
<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>
<li>Fix regression in scrolling performance of album grid introduced in 0.12.0</li>
<li>Scroll to currently playing track when loading Now Playing page</li>
<li>Track with new sample rate failing to begin playback on Windows</li>
<li>Removing track from a playlist would remove all copies of it</li>
<li>Use custom HTTP User-Agent to avoid being blocked by some WAF servers</li>
<li>Increase base scrolling speed, add keybindings for PageUp/PageDown</li>
<li>Some performance improvements from updating to Fyne 2.5.3</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>

</description>
Expand Down
28 changes: 15 additions & 13 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.1"
AppVersion = "0.13.2"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
Expand All @@ -15,19 +15,21 @@ const (
var (
WhatsAdded = `
## Added
* 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`
* New translations: German, Japanese
* Setting in config dialog to choose app language
* 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)`

WhatsFixed = `
## Fixed
* 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`
* Fix regression in scrolling performance of album grid introduced in 0.12.0
* Scroll to currently playing track when loading Now Playing page
* Track with new sample rate failing to begin playback on Windows
* Removing track from a playlist would remove all copies of it
* Use custom HTTP User-Agent to avoid being blocked by some WAF servers
* 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`
)
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.13.1"
#define MyAppVersion "0.13.2"
#define MyAppPublisher "Drew Weymouth"
#define MyAppURL "https://github.com/dweymouth/supersonic"
#define MyAppExeName "Supersonic.exe"
Expand Down

0 comments on commit 37f678e

Please sign in to comment.