|
@@ -8,6 +8,7 @@ import (
|
|
|
"path/filepath"
|
|
|
"time"
|
|
|
"updater/download"
|
|
|
+ "updater/utils"
|
|
|
|
|
|
"gioui.org/app"
|
|
|
"gioui.org/io/system"
|
|
@@ -30,6 +31,7 @@ import (
|
|
|
|
|
|
// Define the progress variables, a channel and a variable
|
|
|
|
|
|
+var pkgUrl string = "http://spu3dv1.obs.cn-east-3.myhuaweicloud.com/lancher/windows-amd64/1.0.2.zip"
|
|
|
var progress float32
|
|
|
var progressIncrementer chan float32
|
|
|
|
|
@@ -38,6 +40,7 @@ var GAppOption = &AppOption{}
|
|
|
type AppOption struct {
|
|
|
NatsPort int `short:"p" long:"np" description:"nats port"`
|
|
|
Url string `short:"u" long:"url" description:"url"`
|
|
|
+ Upload string `short:"d" long:"ud" description:"upload"`
|
|
|
}
|
|
|
|
|
|
func (o *AppOption) Parse() {
|
|
@@ -78,7 +81,7 @@ func upgradeLancherExe(url string, cb ProcesCallback) {
|
|
|
time.Sleep(time.Second * 3)
|
|
|
|
|
|
//3 安装新的lancher.exe
|
|
|
- currLancherExe := filepath.Join(appExeDir, "main")
|
|
|
+ currLancherExe := filepath.Join(appExeDir, "lancher.exe")
|
|
|
currLancherExeback := filepath.Join(appExeDir, "lancher.exe.back")
|
|
|
err = os.Rename(currLancherExe, currLancherExeback)
|
|
|
if err != nil {
|
|
@@ -98,7 +101,7 @@ func upgradeLancherExe(url string, cb ProcesCallback) {
|
|
|
|
|
|
//4 启动lancher.exe
|
|
|
// 重启
|
|
|
- cmd := exec.Command(currLancherExe, "--np=14220")
|
|
|
+ cmd := exec.Command(currLancherExe)
|
|
|
cmd.Stdout = os.Stdout
|
|
|
cmd.Stderr = os.Stderr
|
|
|
err = cmd.Start()
|
|
@@ -111,6 +114,8 @@ func upgradeLancherExe(url string, cb ProcesCallback) {
|
|
|
cb(1, "")
|
|
|
|
|
|
time.Sleep(time.Second)
|
|
|
+ os.Remove(currLancherExeback)
|
|
|
+ os.Remove(downLancherExe)
|
|
|
|
|
|
os.Exit(0)
|
|
|
}
|
|
@@ -121,6 +126,16 @@ var installSucc = false
|
|
|
func main() {
|
|
|
GAppOption.Parse()
|
|
|
fmt.Println(GAppOption)
|
|
|
+ // 上传编译好的执行文件
|
|
|
+ if len(GAppOption.Upload) > 0 {
|
|
|
+ zipPath, err := utils.UploadExe()
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
+ }
|
|
|
+ // 成功后删除压缩文件
|
|
|
+ os.Remove(zipPath)
|
|
|
+ return
|
|
|
+ }
|
|
|
|
|
|
// // Setup a separate channel to provide ticks to increment progress
|
|
|
progressIncrementer = make(chan float32)
|