aboutsummaryrefslogtreecommitdiff
path: root/gui/internal/model/about.go
diff options
context:
space:
mode:
Diffstat (limited to 'gui/internal/model/about.go')
-rw-r--r--gui/internal/model/about.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/internal/model/about.go b/gui/internal/model/about.go
index ca57bba..ce2d9d7 100644
--- a/gui/internal/model/about.go
+++ b/gui/internal/model/about.go
@@ -3,12 +3,12 @@
package model
// The people and terms behind the program, in one place so About and any
-// later --about agree. The repository line joins these once there is a
-// public one to name.
+// later --about agree.
const (
Author = "Lukasz Kasprzak"
Contact = "lukas@labunix.xyz"
Licence = "GPL-3.0-or-later"
+ Repo = "https://git.labunix.xyz/krino.git"
)
// About is the block Settings shows at its foot: what this is, which build
@@ -23,5 +23,6 @@ func About(version string) []string {
"A rule-based file sorter: it reads a directory, works out what belongs where, shows you the plan, and only then moves anything.",
"Licence: " + Licence + " - free software, with no warranty.",
"By " + Author + ", " + Contact,
+ Repo,
}
}