Change footer text format

This commit is contained in:
2023-12-12 03:10:44 -06:00
parent a991d9cdee
commit 31d2daeaee

View File

@@ -155,7 +155,7 @@ var CommitId = func() string {
}() }()
func GetFooterText() string { func GetFooterText() string {
return fmt.Sprintf("Fetched at %s @%s", return fmt.Sprintf("%s (#%s)",
time.Now().Format("Monday, January 2, 2006 at 3:04:05PM"), time.Now().Format("Jan 2, 2006 3:04:05PM"),
strings.ToLower(CommitId[:7])) strings.ToLower(CommitId[:7]))
} }