Files
2026-07-13 08:34:51 -07:00

38 lines
1.5 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package res
const (
AppName = "supersonic"
DisplayName = "Supersonic"
AppVersion = "0.22.0"
AppVersionTag = "v" + AppVersion
ConfigFile = "config.toml"
GithubURL = "https://github.com/dweymouth/supersonic"
LatestReleaseURL = GithubURL + "/releases/latest"
KofiURL = "https://ko-fi.com/dweymouth"
Copyright = "Copyright © 20222026 Drew Weymouth and contributors"
)
var (
WhatsAdded = `
## Added
* IPC endpoint for getting the current track/radio station
* Support for the OpenSubsonic playbackReport extension
* "All Tracks" option on the Startup page
* Cover art support for internet radio stations
* Updated Polish, Spanish, Greek, Turkish, and French translations
* Migrate to Fyne 2.8, adding Wayland support
* Match window border color to app theme rather than OS theme
* Artist biography text now scrolls instead of being truncated`
WhatsFixed = `
## Fixed
* UI freeze after switching workspaces on Wayland
* Segfault when clicking the tray icon on Wayland
* Crash/freeze when system keyring unlock dialog blocked the main event loop on startup
* Race condition when using an alternate hostname caused 401 auth errors
* UI scale setting not applied correctly when using a non-English language
* DLNA cast DIDL-Lite metadata missing artist, album, cover art, and <res> audio attributes
* Stale cover art and Now Playing background persisting on tracks without art
* Autoplay incorrectly enqueuing tracks while a radio station is playing`
)