From a266565d6e094b3121fe154fb78756c3b46b47f7 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 13:09:37 +0800
Subject: [PATCH 1/9] Fix: typo

---
 docs/development/build.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/development/build.md b/docs/development/build.md
index be6e19f..b07905e 100644
--- a/docs/development/build.md
+++ b/docs/development/build.md
@@ -60,7 +60,7 @@ $env:GOARCH="amd64"
 
 go build -o xray -trimpath -ldflags "-s -w -buildid=" ./main
 ```
-上传到服务器后,记得在服务器终端内执行 chmod +x v2ray 和 chmod +x v2ctl
+上传到服务器后,记得在服务器终端内执行 `chmod +x xray`
 
 ::: tip
 执行 `go tool dist list` 查看所有支持的系统与架构。
@@ -68,8 +68,8 @@ go build -o xray -trimpath -ldflags "-s -w -buildid=" ./main
 
 ## 可复现构建:
 
-按照上述步骤,能够编译出与 Release 中相同的二进制文件。
+按照上述步骤,能够编译出与 Release 中完全相同的二进制文件。
 
 ::: warning
-请先确认您使用的 Golang 与编译 Release 一致。
+请先确认您使用的 Golang 版本与编译 Release 的一致。
 :::

From c534cf42294949f12446c2c0838a45b3a8b53fde Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 13:48:10 +0800
Subject: [PATCH 2/9] Add GitHub Pages (#1)

---
 .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..18cecfd
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,32 @@
+name: Deploy Vuepress
+on:
+  push:
+    branches:
+      - master
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v2
+        with:
+          fetch-depth: 0         
+      - name: Get yarn cache directory path
+        id: yarn-cache-dir-path
+        run: echo "::set-output name=dir::$(yarn cache dir)"
+      - uses: actions/cache@v2
+        id: yarn-cache
+        with:
+          path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
+          key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
+          restore-keys: |
+            ${{ runner.os }}-yarn-
+      - name: Install and Build
+        run: |
+          yarn install
+          yarn build
+      - name: Deploy
+        uses: peaceiris/actions-gh-pages@v3
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}
+          publish_dir: docs/.vuepress/dist

From 10f46938c850159a963013a35890952f417b7a37 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 13:48:56 +0800
Subject: [PATCH 3/9] Fix: typo

---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 18cecfd..c5cabb6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -2,7 +2,7 @@ name: Deploy Vuepress
 on:
   push:
     branches:
-      - master
+      - main
 jobs:
   build:
     runs-on: ubuntu-latest

From 7348bf21d49cd9900b04cc8b9ca6b3ebbb998e12 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 13:50:21 +0800
Subject: [PATCH 4/9] Fix: typo

---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c5cabb6..bdb1f69 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -24,7 +24,7 @@ jobs:
       - name: Install and Build
         run: |
           yarn install
-          yarn build
+          yarn docs:build
       - name: Deploy
         uses: peaceiris/actions-gh-pages@v3
         with:

From 8c441f4f51b75ac33b3299f053404e974d8db8c7 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 14:00:29 +0800
Subject: [PATCH 5/9] Chore: add base

---
 docs/.vuepress/config.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index 3fc16bb..a5270cb 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -2,6 +2,7 @@ module.exports = {
     plugins: [
         '@vuepress/back-to-top'
     ],
+    base: '/Xray-docs-next/',
     locales: {
         '/': {
             lang: 'zh-CN',
@@ -38,4 +39,4 @@ module.exports = {
             includeLevel: [2]
         }
     }
-}
\ No newline at end of file
+}

From 53c2ba16926571f42c648e12467d6dce52512775 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 14:05:44 +0800
Subject: [PATCH 6/9] Fix: typo

---
 docs/guide/install.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/guide/install.md b/docs/guide/install.md
index 080b555..f195e75 100644
--- a/docs/guide/install.md
+++ b/docs/guide/install.md
@@ -35,13 +35,13 @@ Xray 提供两种验证方式:
 
 ## Windows 安装方式
 
-- 在 [Github Releases](https://github.com/xtls/Xray-core/releases) 下载适用于 Windows 平台的 ZIP 压缩包,解压后可得到可执行文件 `xray.exe`,然后[通过命令行带参数运行](../command) 即可
+- 在 [Github Releases](https://github.com/xtls/Xray-core/releases) 下载适用于 Windows 平台的 ZIP 压缩包,解压后可得到可执行文件 `xray.exe`,然后[通过命令行带参数运行](./command) 即可
 - 通过 [Scoop](https://scoop.sh) 包管理器安装:Xray 已经被添加到 [Mochi](https://github.com/Qv2ray/mochi)。
 - 通过 [Chocolatey](https://chocolatey.org) 包管理器安装:[Xray](https://chocolatey.org/packages/xray/1.3.1),感谢 [Markson](https://chocolatey.org/profiles/markson_ho)
 
 ## macOS 安装方式
 
-- 在 [Github Releases](https://github.com/xtls/Xray-core/releases) 下载适用于 macOS 平台的 ZIP 压缩包,解压后可得到可执行文件 `xray`,然后[通过命令行带参数运行](../command) 即可
+- 在 [Github Releases](https://github.com/xtls/Xray-core/releases) 下载适用于 macOS 平台的 ZIP 压缩包,解压后可得到可执行文件 `xray`,然后[通过命令行带参数运行](./command) 即可
 - 通过 [Homebrew](https://brew.sh) 包管理器安装:<Badge text="WIP"  type="warning"/>
 
 ## Linux 安装方式
@@ -86,6 +86,6 @@ Linux 发行版 Xray 包(可通过发行版相应的包管理器安装):
 
 ## 更多更多...
 
-您可以点击 [传送至众多大佬集结区的任意门](../../links) 获取更多资源
+您可以点击 [传送至众多大佬集结区的任意门](../links) 获取更多资源
 
 ## FAQ <Badge text="WIP"  type="warning"/>

From fc56fbb2ccb3dd7463ec0710c852cda7df2f8d53 Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 14:07:18 +0800
Subject: [PATCH 7/9] Fix: typo

---
 docs/guide/config.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/guide/config.md b/docs/guide/config.md
index 51ea332..8c8e9fb 100644
--- a/docs/guide/config.md
+++ b/docs/guide/config.md
@@ -3,7 +3,7 @@ lang: zh-CN
 title: 配置运行
 ---
 
-[下载并安装](../install) 了 Xray 之后,您需要对它进行一下配置。
+[下载并安装](./install) 了 Xray 之后,您需要对它进行一下配置。
 
 为了演示,这里只介绍简单的配置方式.
 
@@ -100,4 +100,4 @@ title: 配置运行
     - 运行 `xray run -c /etc/xray/config.json`
     - 或使用 systemd 等工具将 Xray 作为服务在后台运行。
 
-更多详细的说明可以参考 [配置文档](../../config) 和 [使用心得](../../documents)。
+更多详细的说明可以参考 [配置文档](../config) 和 [使用心得](../documents)。

From fce8954a97fda8149992fd61c790b2f34a619ace Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 14:14:21 +0800
Subject: [PATCH 8/9] Chore: update document

---
 docs/guide/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/guide/README.md b/docs/guide/README.md
index 24fddbb..f33925d 100644
--- a/docs/guide/README.md
+++ b/docs/guide/README.md
@@ -22,8 +22,8 @@ Xray有多种命令和参数可用,因此变得灵活和强大.
   
 请点击[Xray的命令参数](./command)查看Xray的更多命令和参数用法.
 	
-## 使用文档
+## 改进文档
 
-您正在查看的是 Project X 的文档网站. 您可以了解更多网站的使用方式, 或是帮助我们改进文档质量.
+如果你有兴趣,请点击[使用文档](./document)帮助我们改进文档,或者点击页面下方的 `帮助我们改善此页面!`
 
-请点击[使用文档](./document)进一步查看相关内容
+我们十分感谢每一位 contributor 作出的贡献!是你们让 Project X 变得更加强大!

From 082d0df3804fde9a7116bb314921e4e85dfc6b8a Mon Sep 17 00:00:00 2001
From: Jim Han <50871214+JimhHan@users.noreply.github.com>
Date: Mon, 15 Mar 2021 14:56:40 +0800
Subject: [PATCH 9/9] Update: news

---
 docs/about/news.md | 40 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/docs/about/news.md b/docs/about/news.md
index c93b8d4..69a8c76 100644
--- a/docs/about/news.md
+++ b/docs/about/news.md
@@ -7,6 +7,44 @@ sidebar: auto
 
 # 大史记
 
+## 2021.3.14
+
+### [v1.4.0](https://github.com/XTLS/Xray-core/releases/tag/v1.4.0)
+
+- Happy Pi-Day!
+- 这次是个大更新:
+  - 为链式代理引入了传输层支持。
+  - 为 Dialer 引入了 Domain Strategy,解决奇妙的 DNS 问题。
+  - 添加了 gRPC 传输方式,与更快一点的 Multi Mode。
+  - 添加了 WebSocket Early-Data 功能,减少了 WebSocket 的延迟。
+  - 添加了 FakeDNS。
+  - 还修复了系列的问题,添加了各类功能,详情请见更新日志。
+- 还是 VuePress 比较爽啊(
+
+## 2021.3.3
+
+### [v1.3.1](https://github.com/XTLS/Xray-core/releases/tag/v1.3.1)
+
+- 这个版本使用了 Golang 1.16,正式原生支持 Apple Silicon。
+- 同时修复了一个会导致 Panic 的 bug。~~Holmium_认为这是在骗、在偷袭。~~
+- 修复了几个遗留问题。
+
+## 2021.2.14
+
+### [v1.3.0](https://github.com/XTLS/Xray-core/releases/tag/v1.3.0)
+
+- Happy 🐮 Year 🎉!
+- v1.3.0 通过非常巧妙的机制实现了 V 系协议全部 FullCone,同时保证了一定的兼容性。
+- OHHHHHHHHHHHH!
+
+## 2021.01.31
+
+### [v1.2.4](https://github.com/XTLS/Xray-core/releases/tag/v1.2.4)
+- 解决两个“连接至标准 Socks 服务端时可能出错”的历史遗留问题。
+- 似乎这个版本没有什么改变,但这只是暴风雨前的宁静。
+- (没错我就是先知)
+> 你个傻子,你拿的是 UNO 牌。
+
 ## 2021.01.25
 - 全互联网最好最详细的秘籍入门篇同学们练熟了吗? 🍉老师开始连载[秘籍第一层](../../documents/level-1/)咯...
 - [英文版文档网站](/en)逐渐增加内容ing, 感谢各位大佬的辛苦付出~!
@@ -207,4 +245,4 @@ Xray的第一个版本.
 
 project X start
 
-> ~~梦开始的时候~~
\ No newline at end of file
+> ~~梦开始的时候~~