docs(readme): 更新构建工具描述和下载链接

- 在 README 和 README-EN 中添加 Electron 构建说明
- 更新 Golang 构建目标描述为 Web 服务端
- 添加桌面版应用程序的下载链接
- 重新组织下载部分结构,区分服务端和桌面版
- 为不同平台添加对应的桌面版可执行文件链接
This commit is contained in:
coolxitech
2025-12-14 13:50:29 +08:00
parent 070f12a5a0
commit 452874c9cb
2 changed files with 9 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ OGame Vue TS is a single-player, browser-based space strategy game inspired by t
- **Frontend Framework:** [Vue 3](https://vuejs.org/) with Composition API (`<script setup>`)
- **Language:** [TypeScript](https://www.typescriptlang.org/) with strict type checking
- **Build Tool:** [Vite](https://vitejs.dev/) (Custom Rolldown-Vite 7.2.5)、[Golang](https://golang.org/)(Building multi-platform compatible binary executables)
- **Build Tool:** [Vite](https://vitejs.dev/) (Custom Rolldown-Vite 7.2.5)、[Golang](https://golang.org/)(Building cross-platform Web server.)、[Electron](https://www.electronjs.org/)(Building cross-platform visual interfaces)
- **State Management:** [Pinia](https://pinia.vuejs.org/) with persisted state plugin
- **Routing:** [Vue Router 4](https://router.vuejs.org/)
- **UI Components:** [shadcn-vue](https://www.shadcn-vue.com/) (New York style)

View File

@@ -38,7 +38,7 @@ OGame Vue TS 是一款受经典 OGame 游戏启发的单机版、基于浏览器
- **前端框架:** [Vue 3](https://vuejs.org/) + Composition API (`<script setup>` 语法)
- **开发语言:** [TypeScript](https://www.typescriptlang.org/) (启用严格类型检查)
- **构建工具:** [Vite](https://vitejs.dev/) (自定义 Rolldown-Vite 7.2.5)、[Golang](https://golang.org/)(构建平台兼容的二进制可执行文件)
- **构建工具:** [Vite](https://vitejs.dev/) (自定义 Rolldown-Vite 7.2.5)、[Golang](https://golang.org/)(构建平台的Web服务端)、[Electron](https://www.electronjs.org/)(构建跨平台可视化界面)
- **状态管理:** [Pinia](https://pinia.vuejs.org/) + 持久化插件
- **路由管理:** [Vue Router 4](https://router.vuejs.org/)
- **UI 组件:** [shadcn-vue](https://www.shadcn-vue.com/) (New York 风格)
@@ -50,6 +50,8 @@ OGame Vue TS 是一款受经典 OGame 游戏启发的单机版、基于浏览器
## 快速开始
### 下载构建版本
#### 服务端
[Windows](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-windows-amd64.exe)
[Linux amd64](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-linux-amd64)
@@ -60,6 +62,11 @@ OGame Vue TS 是一款受经典 OGame 游戏启发的单机版、基于浏览器
[MacOS](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-macos-arm64)
#### 桌面版
[Windows](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-desktop-windows-amd64.exe)
[Linux](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-desktop-linux-amd64)
[MacOS](https://github.com/coolxitech/ogame-vue-ts/releases/latest/download/ogame-desktop-macos-arm64)
### 环境要求
- [Node.js](https://nodejs.org/) (推荐 18 或更高版本)