diff --git a/cmd/upgrade/views/index.html b/cmd/upgrade/views/index.html
index c4470ff00..8728daa97 100644
--- a/cmd/upgrade/views/index.html
+++ b/cmd/upgrade/views/index.html
@@ -3,7 +3,7 @@
- 上传
+ 下载更新包
diff --git a/cmd/v2/FyneApp.toml b/cmd/v2/FyneApp.toml
new file mode 100644
index 000000000..53a47ed61
--- /dev/null
+++ b/cmd/v2/FyneApp.toml
@@ -0,0 +1,8 @@
+Website = "http://legu.cc"
+
+[Details]
+ Icon = "Icon.png"
+ Name = "RobotGUI"
+ ID = "cc.legu.app"
+ Version = "1.0.5"
+ Build = 5
diff --git a/cmd/v2/ui/tip.go b/cmd/v2/ui/tip.go
new file mode 100644
index 000000000..763e0428f
--- /dev/null
+++ b/cmd/v2/ui/tip.go
@@ -0,0 +1,24 @@
+package ui
+
+import (
+ "time"
+
+ "fyne.io/fyne/v2"
+ "fyne.io/fyne/v2/driver/desktop"
+ "fyne.io/fyne/v2/widget"
+)
+
+// 显示Tip
+func showTip(content string) {
+ drv := fyne.CurrentApp().Driver()
+ if drv, ok := drv.(desktop.Driver); ok {
+ w := drv.CreateSplashWindow()
+ w.SetContent(widget.NewLabelWithStyle(content, fyne.TextAlignCenter, fyne.TextStyle{}))
+ w.Show()
+
+ go func() {
+ time.Sleep(time.Second * 2)
+ w.Close()
+ }()
+ }
+}