Files
supersonic/res/metadata.go
T

32 lines
941 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.9.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 © 20222024 Drew Weymouth and contributors"
)
var (
WhatsAdded = `
## Added
* Allow reordering of tracks in the play queue
* Highlight the icon of the current page's navigation button (thanks @natilou!)
* Show release type in album page header (for OpenSubsonic servers)
* Setting to save and reload play queue on exit/startup
* Use most recent playlist as default in "Add to playlist" dialog
* Option to show desktop notifications on track change
* Added icons to context menu items
`
WhatsFixed = `
## Fixed
* OpenGL startup error on some hardware
`
)