bump copyright year

This commit is contained in:
Drew Weymouth
2024-01-12 08:14:33 -08:00
parent e9d462e655
commit c9e6d5981a
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@ const (
GithubURL = "https://github.com/dweymouth/supersonic"
LatestReleaseURL = GithubURL + "/releases/latest"
KofiURL = "https://ko-fi.com/dweymouth"
Copyright = "Copyright © 20222024 Drew Weymouth and contributors"
)
var (
+1 -1
View File
@@ -61,7 +61,7 @@ func (a *AboutDialog) buildMainTabContainer(version string) *fyne.Container {
title.Segments[0].(*widget.TextSegment).Style.SizeName = theme.SizeNameSubHeadingText
title.Segments[0].(*widget.TextSegment).Style.Alignment = fyne.TextAlignCenter
versionLbl := newCenterAlignLabel(fmt.Sprintf("version %s", version))
copyright := newCenterAlignLabel("Copyright © 20222023 Drew Weymouth and contributors")
copyright := newCenterAlignLabel(res.Copyright)
license := widget.NewRichTextWithText("GNU General Public License version 3 (GPL v3)")
ts := license.Segments[0].(*widget.TextSegment)
ts.Style.TextStyle.Bold = true