Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
fetch-depth: 1
persist-credentials: false

Expand All @@ -46,6 +47,8 @@ jobs:
with:
sarif_file: bandit-results.sarif
category: bandit
ref: ${{ github.event_name == 'pull_request' && format('refs/heads/{0}', github.head_ref) || github.ref }}
sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

detect-secrets-scan:
name: CI-Tests / detect-secrets
Expand Down
2 changes: 1 addition & 1 deletion docs/TECHNICAL_OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ src/main.py
| `mod_file_installer.py` | 模組下載、原子替換、回滾、匯入、刪除、啟停 |
| `mod_provider_resolver.py` | provider metadata、slug / project id 正規化與搜尋 fallback |
| `version_manager.py` | Minecraft 版本列表查詢 |
| `loader_manager.py` | Fabric/Forge 版本查詢與 TTL 快取 |
| `loader_manager.py` | Fabric/Forge/Quilt/NeoForge 版本查詢與 TTL 快取 |

### `src/ui/`

Expand Down
2 changes: 1 addition & 1 deletion docs/USER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

1. 前往「**建立伺服器**」頁面
2. 輸入名稱、選擇 Minecraft 版本
3. 選擇載入器:Vanilla/Fabric/Forge
3. 選擇載入器:Vanilla/Fabric/Forge/Quilt/NeoForge
4. 設定記憶體用量
5. 按下「**建立**」,程式會自動下載所需檔案

Expand Down
Loading