From fce734782388f1eba681307f44c8b0940bf72e45 Mon Sep 17 00:00:00 2001 From: Colin955023 <123829404+Colin955023@users.noreply.github.com> Date: Fri, 8 May 2026 10:44:05 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E8=80=85=E6=89=8B=E5=86=8A=EF=BC=8C=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=B0=8D=20Quilt=20=E5=92=8C=20NeoForge=20=E8=BC=89=E5=85=A5?= =?UTF-8?q?=E5=99=A8=E7=9A=84=E6=94=AF=E6=8F=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/TECHNICAL_OVERVIEW.md | 2 +- docs/USER_GUIDE.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/TECHNICAL_OVERVIEW.md b/docs/TECHNICAL_OVERVIEW.md index 82266b7..09786cb 100644 --- a/docs/TECHNICAL_OVERVIEW.md +++ b/docs/TECHNICAL_OVERVIEW.md @@ -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/` diff --git a/docs/USER_GUIDE.md b/docs/USER_GUIDE.md index 7bab3f1..776cdc0 100644 --- a/docs/USER_GUIDE.md +++ b/docs/USER_GUIDE.md @@ -43,7 +43,7 @@ 1. 前往「**建立伺服器**」頁面 2. 輸入名稱、選擇 Minecraft 版本 -3. 選擇載入器:Vanilla/Fabric/Forge +3. 選擇載入器:Vanilla/Fabric/Forge/Quilt/NeoForge 4. 設定記憶體用量 5. 按下「**建立**」,程式會自動下載所需檔案 From 0568c608d4dddad57adeda63b9b8c9f13cfbd949 Mon Sep 17 00:00:00 2001 From: Colin955023 <123829404+Colin955023@users.noreply.github.com> Date: Fri, 8 May 2026 10:57:13 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20CI=20=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E4=BB=A5=E6=94=AF=E6=8F=B4=E6=8B=89=E5=8F=96=E8=AB=8B?= =?UTF-8?q?=E6=B1=82=E7=9A=84=E6=AD=A3=E7=A2=BA=E5=BC=95=E7=94=A8=E5=92=8C?= =?UTF-8?q?=20SHA=20=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index f2d4d6b..d8e15ed 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -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 @@ -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