Compare commits

..

2 Commits

Author SHA1 Message Date
sa 13723a73d9 Fix the same bug as window operation. 2026-06-22 23:07:33 +08:00
sa b9e3fee984 Fix the same bug as window operation. 2026-06-22 23:07:06 +08:00
5 changed files with 5 additions and 5 deletions
Binary file not shown.
+4 -4
View File
@@ -70,16 +70,16 @@ func onReady() {
// 访问 Gitea → 浏览器打开 SASWE 代码托管
go func() {
<-mVisitGitea.ClickedCh
for range mVisitGitea.ClickedCh{
log.Info().Msg("用户点击访问 Gitea")
exec.Command("cmd", "/c", "start", "http://103.217.186.98:3000/").Start()
exec.Command("cmd", "/c", "start", "http://103.217.186.98:3000/").Start()}
}()
// 访问 Cloudreve → 浏览器打开 SASWE 文件分发
go func() {
<-mVisitCloudreve.ClickedCh
for range mVisitCloudreve.ClickedCh{
log.Info().Msg("用户点击访问 Cloudreve")
exec.Command("cmd", "/c", "start", "http://103.217.186.98:5212/").Start()
exec.Command("cmd", "/c", "start", "http://103.217.186.98:5212/").Start()}
}()
// 显示控制台 → 调用 showConsoleWindow()
Binary file not shown.
+1 -1
View File
@@ -3,7 +3,7 @@
; Non-commercial use only
#define MyAppName "SCU Remote Connect Client"
#define MyAppVersion "beta-1.1"
#define MyAppVersion "beta-1.3"
#define MyAppPublisher "S.A. (@SNOWARE)"
#define MyAppURL "swe-iss.rth1.xyz/softwares/srcc"
#define MyAppExeName "srcc.exe"
BIN
View File
Binary file not shown.