From b4692485380261d5ff0061dccee090442aeeb819 Mon Sep 17 00:00:00 2001 From: Elara6331 Date: Thu, 14 Dec 2023 14:17:10 -0800 Subject: [PATCH] Change (dirty) in about message to (modified) to make it clearer for users --- internal/systems/about/about.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/systems/about/about.go b/internal/systems/about/about.go index ddc167d..9f79454 100644 --- a/internal/systems/about/about.go +++ b/internal/systems/about/about.go @@ -58,7 +58,7 @@ func getCommit() string { commit = "`" + setting.Value + "`" case "vcs.modified": if setting.Value == "true" { - commit += " (dirty)" + commit += " (modified)" } } }