diff --git a/gui/gui_dev.go b/gui/gui_dev.go index f413fc0..c65f399 100644 --- a/gui/gui_dev.go +++ b/gui/gui_dev.go @@ -9,5 +9,5 @@ import ( ) func getAppTitle() string { - return fmt.Sprintf("%s Ver %s - 正式版", config.ProgramName, model.Version(config.Version)) + return fmt.Sprintf("%s Ver %s - 测试版 仅供开发人员测试使用 请勿用于其他用途", config.ProgramName, model.Version(config.Version)) } diff --git a/gui/gui_stable.go b/gui/gui_stable.go index c9a01e4..ba018f8 100644 --- a/gui/gui_stable.go +++ b/gui/gui_stable.go @@ -9,5 +9,5 @@ import ( ) func getAppTitle() string { - return fmt.Sprintf("%s Ver %s - 测试版 仅供开发人员测试使用 请勿用于其他用途", config.ProgramName, model.Version(config.Version)) + return fmt.Sprintf("%s Ver %s - 正式版", config.ProgramName, model.Version(config.Version)) }