Bump version to 1.16.1

This commit is contained in:
Gerhard Tan
2024-06-19 07:39:55 +00:00
committed by GitHub
parent 85f44b9b2d
commit f33d72d64e
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import (
)
var (
Number = "1.16.0"
Number = "1.16.1"
// FRPVersion is the version of FRP used by this program
FRPVersion = version.Full()
// BuildDate is the day that this program was built

View File

@ -58,7 +58,7 @@ func (ap *AboutPage) Page() TabPage {
Layout: VBox{Margins: Margins{Left: 12}},
Children: []Widget{
Label{Text: AppName, Font: res.TextLarge, TextColor: res.ColorDarkBlue},
Label{Text: i18n.Sprintf("Version: %s", version.Number)},
Label{Text: i18n.Sprintf("Version: %s", version.Number) + " (Windows 7)"},
Label{Text: i18n.Sprintf("FRP version: %s", version.FRPVersion)},
Label{Text: i18n.Sprintf("Built on: %s", version.BuildDate)},
VSpacer{Size: 3},