expand CONTRIBUTING, print if tray enabled on startup

This commit is contained in:
Harvey Tindall
2021-05-24 15:58:43 +01:00
parent 8b62c91d13
commit 85536ff79e
6 changed files with 16 additions and 5 deletions
+5 -1
View File
@@ -708,7 +708,11 @@ func flagPassed(name string) (found bool) {
// @tag.description Things that dont fit elsewhere.
func printVersion() {
fmt.Println(info("jfa-go version: %s (%s)\n", hiwhite(version), white(commit)))
tray := ""
if TRAY {
tray = " TrayIcon"
}
fmt.Println(info("jfa-go version: %s (%s)%s\n", hiwhite(version), white(commit), tray))
}
func main() {