Files
supersonic/res/metadata.go
T

29 lines
918 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.16.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 click-to-seek to lyrics viewer for synced lyrics
* Allow customization of grid card size
* Add setting to request transcoding to a specific format/bitrate from server
* Japanese translation improvements`
WhatsFixed = `
## Fixed
* New setting to disable OS Now Playing APIs - workaround for Windows SMTC bugginess
* Crashing with custom themes that change the Primary color
* Incorrect tracks removed from playlist if removing from searched view`
)