aboutsummaryrefslogtreecommitdiff
path: root/ui.go
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2021-05-18 15:57:19 +0200
committerGitHub <noreply@github.com>2021-05-18 15:57:19 +0200
commit9b651eb701f2c2423166022d8fe9b9df067fc387 (patch)
treeb9a4f4493ccd0d8b733e1d04ef239475821e7f22 /ui.go
parenta0620ae92c5c4790b04e404c54acaa98e89df326 (diff)
downloadnoisetorch-9b651eb701f2c2423166022d8fe9b9df067fc387.tar.gz
noisetorch-9b651eb701f2c2423166022d8fe9b9df067fc387.zip
Implement distribution-specific builds
Make more things configurable at compile time so building binaries for distributions is easier while complying with the license.
Diffstat (limited to 'ui.go')
-rw-r--r--ui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.go b/ui.go
index af4421a..bbab17f 100644
--- a/ui.go
+++ b/ui.go
@@ -345,7 +345,7 @@ func versionView(ctx *ntcontext, w *nucular.Window) {
w.Row(50).Dynamic(1)
w.Label("Version", "CB")
w.Row(50).Dynamic(1)
- w.Label(version, "CB")
+ w.Label(fmt.Sprintf("%s (%s)", version, distribution), "CB")
w.Row(50).Dynamic(1)
w.Spacing(1)
w.Row(20).Dynamic(2)