From e5bb405f792735528d3d76cc23e2825773002ea7 Mon Sep 17 00:00:00 2001
From: yuanyuanxiang <962914132@qq.com>
Date: Wed, 20 May 2026 22:21:33 +0200
Subject: [PATCH] docs: migrate Release/Download targets to Gitea; keep
stars/forks on GitHub
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
GitHub mirror is no longer maintained; v1.3.4+ releases land on Gitea only.
Repoint the Release-version badge and Download-Latest button (href + shields
endpoint + logo) at git.simpleremoter.com so visitors don't end up on a stale
GitHub release page.
Stars/forks badges stay on GitHub — vanity counters reflecting historical
accumulation, not navigation targets.
Also: server/go/README.md yama-issue-token link and the line-294 Markdown
"Releases" link in all three READMEs now point at Gitea.
---
ReadMe.md | 10 +++++-----
ReadMe_EN.md | 10 +++++-----
ReadMe_TW.md | 10 +++++-----
server/2015Remote/2015RemoteDlg.cpp | 7 ++++---
server/go/README.md | 2 +-
5 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/ReadMe.md b/ReadMe.md
index 18e659b..067e0f0 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -9,8 +9,8 @@
-
-
+
+
@@ -19,8 +19,8 @@
-
-
+
+
@@ -291,7 +291,7 @@
无需编译,下载即用:
-1. **下载发布版** - 从 [Releases](https://github.com/yuanyuanxiang/SimpleRemoter/releases/latest) 下载最新版本
+1. **下载发布版** - 从 [Releases](https://git.simpleremoter.com/yuanyuanxiang/SimpleRemoter/releases/latest) 下载最新版本
2. **启动主控** - 运行 `YAMA.exe`(或 Linux 上的 `server_linux_amd64`),输入授权信息
3. **生成客户端** - 工具栏「生成」配置服务器 IP 和端口
4. **部署客户端** - 复制到目标机器运行
diff --git a/ReadMe_EN.md b/ReadMe_EN.md
index 563c633..d62ff64 100644
--- a/ReadMe_EN.md
+++ b/ReadMe_EN.md
@@ -9,8 +9,8 @@
-
-
+
+
@@ -19,8 +19,8 @@
-
-
+
+
@@ -291,7 +291,7 @@ Full description: [Multi-Layer License](./docs/MultiLayerLicense.md)
No compilation required — download and run:
-1. **Download a release** — grab the latest build from [Releases](https://github.com/yuanyuanxiang/SimpleRemoter/releases/latest)
+1. **Download a release** — grab the latest build from [Releases](https://git.simpleremoter.com/yuanyuanxiang/SimpleRemoter/releases/latest)
2. **Start the master** — run `YAMA.exe` (or `server_linux_amd64` on Linux), enter the license info
3. **Generate a client** — click *Build* in the toolbar, configure server IP / port
4. **Deploy the client** — copy to the target machine and run it
diff --git a/ReadMe_TW.md b/ReadMe_TW.md
index d857f5c..c5d46f8 100644
--- a/ReadMe_TW.md
+++ b/ReadMe_TW.md
@@ -9,8 +9,8 @@
-
-
+
+
@@ -19,8 +19,8 @@
-
-
+
+
@@ -291,7 +291,7 @@
無需編譯,下載即用:
-1. **下載發行版** - 從 [Releases](https://github.com/yuanyuanxiang/SimpleRemoter/releases/latest) 下載最新版本
+1. **下載發行版** - 從 [Releases](https://git.simpleremoter.com/yuanyuanxiang/SimpleRemoter/releases/latest) 下載最新版本
2. **啟動主控** - 執行 `YAMA.exe`(或 Linux 上的 `server_linux_amd64`),輸入授權資訊
3. **生成用戶端** - 工具列「生成」設定伺服器 IP 和埠
4. **部署用戶端** - 複製到目標機器執行
diff --git a/server/2015Remote/2015RemoteDlg.cpp b/server/2015Remote/2015RemoteDlg.cpp
index 89027f6..42e3671 100644
--- a/server/2015Remote/2015RemoteDlg.cpp
+++ b/server/2015Remote/2015RemoteDlg.cpp
@@ -10741,15 +10741,16 @@ void CMy2015RemoteDlg::OnWebRemoteControl()
int port = THIS_CFG.GetInt("settings", "WebSvrPort", -1);
if (port <= 0) {
MessageBoxL("请在菜单设置Web端口!", "提示", MB_ICONINFORMATION);
+ return;
}
else if (m_superPass.empty()) {
MessageBoxL("请设置环境变量 " BRAND_ENV_VAR " 来使用Web远程桌面!", "提示", MB_ICONINFORMATION);
}else {
- CString content;
- content.Format("http://127.0.0.1:%d", port);
- ShellExecute(NULL, _T("open"), content, NULL, NULL, SW_SHOWNORMAL);
MessageBoxL("如需Web远程桌面跨网使用方案,请联系管理员!", "提示", MB_ICONINFORMATION);
}
+ CString content;
+ content.Format("http://127.0.0.1:%d", port);
+ ShellExecute(NULL, _T("open"), content, NULL, NULL, SW_SHOWNORMAL);
}
// "播放快照"菜单响应:
diff --git a/server/go/README.md b/server/go/README.md
index cdaac09..992fd97 100644
--- a/server/go/README.md
+++ b/server/go/README.md
@@ -209,7 +209,7 @@ openssl genrsa -out license_priv.pem 2048
openssl rsa -in license_priv.pem -pubout -out license_pub.pem
```
-底层 API 是 `licensing.Issue(privKey, sub, tier, maxDevices, ttl)`(见 [`licensing/server.go`](licensing/server.go))。一个开箱即用的 CLI 包装在独立仓库 [`yama-issue-token`](https://github.com/yuanyuanxiang/yama-issue-token)(go.mod `replace` 指向本仓库的 `licensing` 包),用法:
+底层 API 是 `licensing.Issue(privKey, sub, tier, maxDevices, ttl)`(见 [`licensing/server.go`](licensing/server.go))。一个开箱即用的 CLI 包装在独立仓库 [`yama-issue-token`](https://git.simpleremoter.com/yuanyuanxiang/yama-issue-token)(go.mod `replace` 指向本仓库的 `licensing` 包),用法:
```bash
yama-issue-token -priv license_priv.pem -sub acme-corp -tier paid -max 100 -days 365