From 6eed82e76946605b03afa604c4716dba104b9340 Mon Sep 17 00:00:00 2001 From: cc-fuyu Date: Fri, 27 Feb 2026 10:32:10 -0500 Subject: [PATCH] [213_20] Sync Chinese README build section with English version --- README_ZH.md | 17 ++++++++++------- devel/213_20.md | 18 ++++++++++++++++++ 2 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 devel/213_20.md diff --git a/README_ZH.md b/README_ZH.md index 57ad71aced..86ea687f00 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -62,18 +62,21 @@ ### 安装 #### 墨干(社区版) -**从 Release 下载**:从 [GitHub releases](https://github.com/XmacsLabs/mogan/releases) 下载针对你平台的最新发行版本。 +**从 Release 下载**:从 [GitHub releases](https://github.com/MoganLab/mogan/releases) 下载针对你平台的最新发行版本。 **从源码构建**: + +克隆仓库: ```bash -# 克隆仓库 -git clone https://github.com/XmacsLabs/mogan.git +git clone https://github.com/MoganLab/mogan.git cd mogan - -# 使用 xmake 构建 stem -xmake build stem ``` +具体的环境配置、依赖安装、构建和运行说明,请参考对应平台的开发指南: +- [GNU/Linux 开发指南](devel/Develop_on_Linux_ZH.md) +- [Windows 开发指南](devel/Develop_on_Windows_ZH.md) +- [macOS 开发指南](devel/Develop_on_macOS_ZH.md) + #### Liii STEM(商业版) 如需带 AI 能力的商业版,请访问 [Liii STEM 官方网站](https://liiistem.cn) 获取安装选项。 @@ -83,7 +86,7 @@ xmake build stem ### 社区版资源 - **墨干官网**: [https://mogan.app](https://mogan.app) -- **GitHub 仓库**: [github.com/XmacsLabs/mogan](https://github.com/XmacsLabs/mogan) +- **GitHub 仓库**: [github.com/MoganLab/mogan](https://github.com/MoganLab/mogan) - **用户手册**: [Liii/Mogan STEM官方文档](https://liiistem.cn/docs/welcome.html) - **视频教程**: 分步学习资料 diff --git a/devel/213_20.md b/devel/213_20.md new file mode 100644 index 0000000000..6648273761 --- /dev/null +++ b/devel/213_20.md @@ -0,0 +1,18 @@ +# 213_20 Sync Chinese README build section with English version + +## 2025/02/27 Update README_ZH.md build-from-source section + +### What +Updated the "从源码构建" (Build from Source) section in `README_ZH.md` to match the structure of the English `README.md`, and fixed outdated repository links. + +### Why +Issue #2846 identified that the README should not include bare `xmake build stem` commands without mentioning prerequisite dependencies. The English `README.md` was already updated (via PR #2854) to replace the direct build commands with links to platform-specific development guides. However, the Chinese `README_ZH.md` was not updated accordingly and still contained the outdated `xmake build stem` command. + +Additionally, several links in `README_ZH.md` still pointed to the old `XmacsLabs/mogan` repository instead of the current `MoganLab/mogan`. + +### How +- Replaced the direct `xmake build stem` command with links to the three platform-specific Chinese development guides +- Updated GitHub releases link from `XmacsLabs/mogan` to `MoganLab/mogan` +- Updated GitHub repository link from `XmacsLabs/mogan` to `MoganLab/mogan` + +Closes #2846 (for the Chinese README part)