Files
AynaLivePlayer/gui/gui_dev.go
aynakeya 3aebdb00f9 fanle
2025-08-01 21:31:02 +08:00

14 lines
294 B
Go

//go:build !nosource
package gui
import (
"AynaLivePlayer/core/model"
"AynaLivePlayer/pkg/config"
"fmt"
)
func getAppTitle() string {
return fmt.Sprintf("%s Ver %s - 测试版 仅供开发人员测试使用 请勿用于其他用途", config.ProgramName, model.Version(config.Version))
}