Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) 获取安装选项。

Expand All @@ -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)
- **视频教程**: 分步学习资料

Expand Down
18 changes: 18 additions & 0 deletions devel/213_20.md
Original file line number Diff line number Diff line change
@@ -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)