yao/share/const.go
Max 4c026755c4 feat: Update versioning and commit information in Makefile and version command
- Added CUI commit information to the Makefile for artifact generation.
- Enhanced version command output to include Yao and CUI commit details with improved formatting.
- Updated constant names in share/const.go for clarity on versioning.
- Fixed references to CUI commit in process and app files to align with new naming conventions.
2025-05-18 16:47:32 +08:00

34 lines
725 B
Go

package share
// VERSION Yao App Engine Version
const VERSION = "0.10.5"
// PRVERSION Yao App Engine PR Commit
const PRVERSION = "DEV"
// CUI Version
const CUI = "0.10.5"
// PRCUI CUI PR Commit
const PRCUI = "DEV"
// BUILDIN If true, the application will be built into a single artifact
const BUILDIN = false
// BUILDNAME The name of the artifact
const BUILDNAME = "yao"
// MoapiHosts the master mirror
var MoapiHosts = []string{
"master.moapi.ai",
"master-moon.moapi.ai",
"master-earth.moapi.ai",
"master-mars.moapi.ai",
"master-venus.moapi.ai",
"master-mercury.moapi.ai",
"master-jupiter.moapi.ai",
"master-saturn.moapi.ai",
"master-uranus.moapi.ai",
"master-neptune.moapi.ai",
"master-pluto.moapi.ai",
}