Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
63b7153
🎨 重命名并迁移文档路径结构
wling-art Dec 16, 2025
4104ae1
📝 暂存-1
wling-art Jan 5, 2026
3097cff
🔧 修复构建
wling-art Jan 6, 2026
6b1d8af
📝 更新文档
wling-art Jan 6, 2026
726235a
✨ 添加 starlight-scroll-to-top
wling-art Jan 6, 2026
e78cba9
💄 增加内容宽度
wling-art Jan 6, 2026
9804d60
✨ 更新时间/贡献者显示
wling-art Jan 6, 2026
e5edf7b
📝 添加 Bedrock 版服务器的快速开始链接卡片
wling-art Jan 6, 2026
ecf3030
迁移基岩版板块
Dreeam-qwq Jan 6, 2026
7bac201
♻️ 迁移 Tabs
wling-art Jan 8, 2026
b650fd0
♻️ 迁移 DocCardList
wling-art Jan 8, 2026
2a1e8a6
📝 修复 java 安装标题问题
wling-art Jan 8, 2026
bfecf5c
清理无用章节
Dreeam-qwq Jan 19, 2026
3bffd57
完成 什么是卡顿?
Dreeam-qwq Jan 19, 2026
d4a07bb
完成 服务端结构
Dreeam-qwq Jan 19, 2026
a95863d
完成 什么是乱码?
Dreeam-qwq Jan 19, 2026
550ccea
完成 什么是命名空间?
Dreeam-qwq Jan 19, 2026
75a132c
完成 什么是启动脚本?
Dreeam-qwq Jan 19, 2026
c9fcda4
完成 什么是 NBT?
Dreeam-qwq Jan 19, 2026
208c578
完成 什么是权限?
Dreeam-qwq Jan 19, 2026
7aae7d8
完成 java basics 部分 & 修复构建
Dreeam-qwq Jan 31, 2026
4a60ef1
完成 general、about
wling-art Jan 31, 2026
19c13eb
合并 Java 进阶知识的维护章节到进阶知识
Dreeam-qwq Jan 31, 2026
9d80a97
修复构建
Dreeam-qwq Jan 31, 2026
d792530
更改 `怎么让大佬帮我性能分析` 文档名
Dreeam-qwq Jan 31, 2026
14dcb7e
🔥 移除 Dropdown
wling-art Feb 1, 2026
b5537c5
⬆️ 升级依赖
wling-art Feb 1, 2026
5c80148
🔧 更新 GitHub 链接并移除 Sidebar 组件
wling-art Feb 1, 2026
a236b00
🔧 更新图标
wling-art Feb 1, 2026
a0018b0
🔧 更新主题颜色变量
wling-art Feb 1, 2026
3a00992
[修订] 修订 Skript 教程并完善文档 (#43)
Radiation-pi Dec 21, 2025
dbf6634
对 Skript 教程的进一步修辞,格式调整 (#44)
Dreeam-qwq Dec 23, 2025
da1b40a
🔧 补齐折叠属性
wling-art Feb 1, 2026
0a2bf2a
Merge branch 'main' into migrate/starlight-docs
wling-art Feb 1, 2026
ff43af9
🐛 修复 tailwindcss 覆盖样式
wling-art Feb 1, 2026
baa42aa
🎨 赞助列表自适应列
wling-art Feb 1, 2026
a2f0326
refactor: 优化赞助者卡片组件,集成 DaisyUI 样式框架 (#5)
Ziphyrien Feb 1, 2026
3b606e8
🔧 移除 --host 参数
wling-art Feb 1, 2026
9e79d69
🎨 使用 router 过渡访问
wling-art Feb 3, 2026
21643de
🎨 添加 hero 页背景渐变
wling-art Feb 3, 2026
9e3dbe3
🎨 添加平滑滚动跳转效果
wling-art Feb 3, 2026
52d0cd1
🔧 run prettier
wling-art Feb 3, 2026
8bc6efe
📝 恢复 markdown 格式
wling-art Feb 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .env

This file was deleted.

64 changes: 32 additions & 32 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
name: Test Pull Request

on:
pull_request:
types: [opened, reopened, synchronize]
pull_request:
types: [opened, reopened, synchronize]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
deploy:
runs-on: ubuntu-latest
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v5
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v5
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-

- name: Install
run: pnpm install --frozen-lockfile
- name: Install
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm run build
- name: Build
run: pnpm run build
64 changes: 32 additions & 32 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
name: Test

on:
push:
branches: ["main"]
push:
branches: ["main"]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
deploy:
runs-on: ubuntu-latest
steps:
# 拉取代码
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v5
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v5
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-

- name: Install
run: pnpm install --frozen-lockfile
- name: Install
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm run build
- name: Build
run: pnpm run build
30 changes: 22 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
build
.idea
.vscode
.docusaurus
node_modules
yarn.lock
package-lock.json
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
.pnpm-store/

.cache/
5 changes: 0 additions & 5 deletions .imgbotconfig

This file was deleted.

6 changes: 5 additions & 1 deletion .markdownlint.jsonc → .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
"single-h1": false,
"no-bare-urls": false,
"no-inline-html": false,
"no-alt-text": false
"no-alt-text": false,
"MD030": false,
"MD007": {
"indent": 4
}
}
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# pnpm dust
pnpm-lock.yaml
10 changes: 9 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,13 @@
"vueIndentScriptAndStyle": false,
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false
"singleAttributePerLine": false,
"overrides": [
{
"files": ["*.yml"],
"options": {
"tabWidth": 2
}
}
]
}
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"davidanson.vscode-markdownlint",
"huacnlee.autocorrect",
"astro-build.astro-vscode",
"esbenp.prettier-vscode"
]
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
16 changes: 9 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@

## 目录

- [这篇文档有问题](#这篇文档有问题)
- [我想要为文档做出贡献](#我想要为文档做出贡献)
- [格式要求](#格式要求)
- [尽量使用个人分叉而不是组织分叉](#尽量使用个人分叉而不是组织分叉)
- [致谢](#致谢)
- [为笨蛋文档做出贡献](#为笨蛋文档做出贡献)
- [目录](#目录)
- [这篇文档有问题](#这篇文档有问题)
- [我想要为文档做出贡献](#我想要为文档做出贡献)
- [格式要求](#格式要求)
- [尽量使用个人分叉而不是组织分叉](#尽量使用个人分叉而不是组织分叉)
- [致谢](#致谢)

## 这篇文档有问题

Expand All @@ -26,15 +28,15 @@

我们不接受任何无意义或偏离主题的意见,所以你应当说明此更改的合理性,并且你应当在提交更改前查看是否有类似更改

你也可以提供针对 [待办事项](https://nitwikit.8aka.org/contribution/todos) 中未完成事项的更改来提高通过的几率
你也可以提供针对 [待办事项](https://github.com/orgs/Cubic-Project/projects/6) 中未完成事项的更改来提高通过的几率

记住!你的任何更改不止会影响到你,还有其他需要通过这篇文档来搭建服务器的人

我们可以在你说明未排版的前提下代替你进行排版,但在此之前,请遵循以下要求:

### 格式要求

对于文档,我们有格式要求,详见 [格式要求](https://nitwikit.8aka.org/contribution/writing) 和 [图片处理](https://nitwikit.8aka.org/contribution/image)
对于文档,我们有格式要求,详见 [中文文案排版指北](https://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/README.zh-Hans.md),还有使用 MarkdownLint 和 Prettier 对文档进行格式化。

若格式不规范但不会或不想排版时请在 PR 时提出 **文档需排版**,否则我们极大概率会关闭此类 PR

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@

- 你不能声称这是你的作品
- 未经作者允许,你不得将本作品用于如下途径:
- 改编或转载
- 盈利
- 改编或转载
- 盈利
- 你可以将本作品在不经授权的情况下用于:
- 带有出处的引用
- 带有出处的引用

如果你希望部署你自己的文档副本,可以

Expand Down
Loading