Skip to content

Commit

Permalink
bump copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Jan 12, 2024
1 parent e9d462e commit c9e6d59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions res/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const (
GithubURL = "https://github.com/dweymouth/supersonic"
LatestReleaseURL = GithubURL + "/releases/latest"
KofiURL = "https://ko-fi.com/dweymouth"
Copyright = "Copyright © 2022–2024 Drew Weymouth and contributors"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion ui/dialogs/aboutdialog.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 © 2022–2023 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
Expand Down

0 comments on commit c9e6d59

Please sign in to comment.