This commit is contained in:
leokun
2026-06-30 10:38:52 +08:00
commit c083be5ec2
312 changed files with 146628 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
package buildinfo
import "strings"
const (
ReleaseRepo = "leookun/cursor-byok"
UpdateBaseURL = "https://github.com/leookun/cursor-byok/releases/latest/download/"
ReleasePageURL = "https://github.com/leookun/cursor-byok/releases"
)
// Version is injected at build time from build/config.yml.
var Version = "0.0.0"
func CurrentVersion() string {
version := strings.TrimSpace(strings.TrimPrefix(Version, "v"))
if version == "" {
return "0.0.0"
}
return version
}
func ReleaseTag() string {
return "v" + CurrentVersion()
}