Files
supersonic/res/metadata.go
T

29 lines
887 B
Go
Raw 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.15.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 © 20222025 Drew Weymouth and contributors"
)
var (
WhatsAdded = `
## Added
* Add ability to cast playback to DLNA devices
* Add ability to search tracks within playlist
* Add context menu actions to items in "Search Everywhere" dialog
* Make server requests timeout configurable and increase default timeout
* New overlay animation when showing full size covers`
WhatsFixed = `
## Fixed
* Wrong track scrobbled when skipping next
* Regression: searching the "All Tracks" page skips some results`
)