From 31d2daeaee7347c8197d3d5b2758cef014da7375 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 12 Dec 2023 03:10:44 -0600 Subject: [PATCH] Change footer text format --- helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers.go b/helpers.go index acdb231..708f057 100644 --- a/helpers.go +++ b/helpers.go @@ -155,7 +155,7 @@ var CommitId = func() string { }() func GetFooterText() string { - return fmt.Sprintf("Fetched at %s @%s", - time.Now().Format("Monday, January 2, 2006 at 3:04:05PM"), + return fmt.Sprintf("%s (#%s)", + time.Now().Format("Jan 2, 2006 3:04:05PM"), strings.ToLower(CommitId[:7])) }