mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-12 07:55:11 +08:00
feat: 新增Android平台支持及构建流程
集成Android平台相关目录与配置文件,包含Gradle构建脚本、资源文件、启动图标、Java入口、Proguard规则等,完善.gitignore以排除Android构建产物。更新CI流程,支持自动构建并发布Android APK。移除README中项目结构说明,简化文档。
This commit is contained in:
51
README-EN.md
51
README-EN.md
@@ -109,57 +109,6 @@ pnpm build
|
||||
pnpm preview
|
||||
```
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
ogame-vue-ts/
|
||||
├── public/ # Static assets
|
||||
│ └── logo.svg # Application logo
|
||||
├── src/
|
||||
│ ├── assets/ # Dynamic assets
|
||||
│ ├── components/ # Vue components
|
||||
│ │ └── ui/ # shadcn-vue UI components
|
||||
│ ├── composables/ # Vue composables
|
||||
│ ├── config/ # Game configuration
|
||||
│ ├── lib/ # Utility libraries
|
||||
│ ├── locales/ # i18n translation files
|
||||
│ ├── logic/ # Game logic modules
|
||||
│ │ ├── buildingLogic.ts
|
||||
│ │ ├── buildingValidation.ts
|
||||
│ │ ├── fleetLogic.ts
|
||||
│ │ ├── moonLogic.ts
|
||||
│ │ ├── moonValidation.ts
|
||||
│ │ ├── researchLogic.ts
|
||||
│ │ ├── researchValidation.ts
|
||||
│ │ ├── shipLogic.ts
|
||||
│ │ └── shipValidation.ts
|
||||
│ ├── router/ # Vue Router configuration
|
||||
│ ├── stores/ # Pinia state stores
|
||||
│ ├── types/ # TypeScript type definitions
|
||||
│ ├── utils/ # Utility functions
|
||||
│ ├── views/ # Page components
|
||||
│ │ ├── OverviewView.vue
|
||||
│ │ ├── BuildingsView.vue
|
||||
│ │ ├── ResearchView.vue
|
||||
│ │ ├── ShipyardView.vue
|
||||
│ │ ├── DefenseView.vue
|
||||
│ │ ├── FleetView.vue
|
||||
│ │ ├── GalaxyView.vue
|
||||
│ │ ├── OfficersView.vue
|
||||
│ │ ├── BattleSimulatorView.vue
|
||||
│ │ ├── MessagesView.vue
|
||||
│ │ └── SettingsView.vue
|
||||
│ ├── App.vue # Root component
|
||||
│ ├── main.ts # Application entry point
|
||||
│ └── style.css # Global styles
|
||||
├── .github/
|
||||
│ └── ISSUE_TEMPLATE/ # GitHub issue templates
|
||||
├── LICENSE # CC BY-NC 4.0 License
|
||||
├── package.json # Project dependencies
|
||||
├── tsconfig.json # TypeScript configuration
|
||||
└── vite.config.ts # Vite configuration
|
||||
```
|
||||
|
||||
## Available Languages
|
||||
|
||||
- 🇺🇸 English
|
||||
|
||||
Reference in New Issue
Block a user