From 70c8ee3994487ff8b832f148c0e1b4a91f2ae5d3 Mon Sep 17 00:00:00 2001 From: xingteh Date: Sun, 18 Jan 2026 18:59:26 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=A7=82=E6=84=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/about.md | 28 ++++++++++++++++++---------- docs/community/downloads.md | 6 ++---- docs/official/acceleration.md | 3 ++- 3 files changed, 22 insertions(+), 15 deletions(-) diff --git a/docs/about.md b/docs/about.md index f8e9a84..a6d0f7a 100644 --- a/docs/about.md +++ b/docs/about.md @@ -1,10 +1,13 @@ # 关于 -本网站由MTR Let’s Play 齐齐玩服务器玩家社区运营 非官方wiki -**官方wiki链接**: `https://wiki.minecrafttransitrailway.com/zh:mtr_letsplay:start` +本网站是由 MTR Let’s Play 齐齐玩服务器玩家社区运营的非官方 Wiki。 + +**官方 Wiki 链接**:`https://wiki.minecrafttransitrailway.com/zh:mtr_letsplay:start` ## 赞助 -如果您想要赞助支持我们维护网站以及lnlfly加速源的运营 + +如果您想要赞助支持我们维护网站以及 lnlfly 加速源的运营: +
微信赞助 @@ -16,11 +19,16 @@
-您的每一分赞助都是对我们最大的支持 所有的赞助都会用于维护本站和加速源 +您的每一分赞助都是对我们最大的支持,所有的赞助都会用于维护本站和加速源。 -##感谢名单 -fenychn0206 xingteh mzdyhr 提供代码 -xingteh 提供地图汉化 -fenychn0206 mkdocs页编写 -TonyV2Intl 寻路地图 -mzdyhr 加速ip&cdn \ No newline at end of file +## 感谢名单 + +- fenychn0206 & xingteh & mzdyhr:提供代码 + +- xingteh:提供线路图优化和地图汉化 + +- fenychn0206:MkDocs 页编写 + +- TonyV2Intl:在线寻路网站 + +- mzdyhr:加速 IP 和 CDN \ No newline at end of file diff --git a/docs/community/downloads.md b/docs/community/downloads.md index f191e78..527a85a 100644 --- a/docs/community/downloads.md +++ b/docs/community/downloads.md @@ -39,15 +39,13 @@ **线路图加速地址**:`https://map.lpsguide.cn` -此线路图由 - ## 地图 **地图官方地址**:`https://letsplay.minecrafttransitrailway.com/world-map/` **地图加速地址**:`https://map.lpsguide.cn/world-map/` -地图加速地址由 GTEH 加以改进 +地图加速地址由 GTEH 优化,修复了官方版的部分 BUG 并添加了简体中文翻译和一些其他实用的新功能。 ## 导航 @@ -71,7 +69,7 @@ ### 📋 下载规范 -在使用网盘资源和离线线路图时,请遵守以下规范: +在使用网盘资源和线路图时,请遵守以下规范: #### ✅ 允许的行为 diff --git a/docs/official/acceleration.md b/docs/official/acceleration.md index 5b921a3..b3730ab 100644 --- a/docs/official/acceleration.md +++ b/docs/official/acceleration.md @@ -50,7 +50,8 @@ **特别鸣谢**:kuisik4 的赞助 -如果想要支持我们加速源[about](about.md) +如果想要支持加速源的运营,请见[关于](about.md) + 您的支持就是我们的动力 --- From df6955ba3b96ed8f6e2960d35d578accce36a3a8 Mon Sep 17 00:00:00 2001 From: Frederick Chen Date: Sun, 18 Jan 2026 21:58:59 +0800 Subject: [PATCH 2/5] =?UTF-8?q?ci:=20mkdocs=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..e527e1f --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,30 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run mkdocs-depoly + run: mkdocs gh-deploy From 3bd6e57ed1cdc204ba9b95ac376f8c386ba4e34a Mon Sep 17 00:00:00 2001 From: Frederick Chen Date: Sun, 18 Jan 2026 22:01:00 +0800 Subject: [PATCH 3/5] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=E5=AE=89=E8=A3=85?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e527e1f..1a40ce2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,6 +25,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - # Runs a single command using the runners shell + - name: Install mkdocs + run: pip install mkdocs-material - name: Run mkdocs-depoly run: mkdocs gh-deploy From 12bf6cd80bfdb55db1b0a66a529d1d0a09a9b563 Mon Sep 17 00:00:00 2001 From: Frederick Chen Date: Sun, 18 Jan 2026 22:03:02 +0800 Subject: [PATCH 4/5] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 48 +++++++++++++++++------------------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1a40ce2..9e21b55 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,31 +1,29 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the workflow will run +name: ci on: - # Triggers the workflow on push or pull request events but only for the "main" branch push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel + branches: + - master + - main +permissions: + contents: write jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + deploy: runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - - - name: Install mkdocs - run: pip install mkdocs-material - - name: Run mkdocs-depoly - run: mkdocs gh-deploy + - name: Configure Git Credentials + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com + - uses: actions/setup-python@v5 + with: + python-version: 3.x + - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV + - uses: actions/cache@v4 + with: + key: mkdocs-material-${{ env.cache_id }} + path: ~/.cache + restore-keys: | + mkdocs-material- + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force From a838faa709bfeae07a8fc665a21af7520fe562e7 Mon Sep 17 00:00:00 2001 From: Frederick Chen Date: Sun, 18 Jan 2026 22:13:00 +0800 Subject: [PATCH 5/5] =?UTF-8?q?chore(config):=20=E7=89=88=E6=9D=83?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=B8=8E=E5=AF=BC=E8=88=AA=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mkdocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index e9a0061..3dd1233 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -43,7 +43,7 @@ nav: - Wiki: official/wiki.md - 线路图与世界地图: official/maps.md - Discord: official/discord.md - - Minecraft 连接 IP: official/acceleration.md + - 服务器 IP: official/acceleration.md - 社区资源: - QQ 群聊: community/qq.md - 网盘资源与线路图: community/downloads.md @@ -79,7 +79,7 @@ markdown_extensions: permalink: true # 版权信息(可选) -copyright: Copyright © 2026 LPS Community +copyright: Copyright © 2026 LPS Community Team extra_javascript: - javascripts/umami.js