Skip to content

Commit 9af91ac

Browse files
committed
Update docs
1 parent f01892b commit 9af91ac

File tree

4 files changed

+39
-16
lines changed

4 files changed

+39
-16
lines changed

components/CheckBox.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { h, defineComponent } from "vue";
2+
3+
export default defineComponent(
4+
(porps) => {
5+
return () =>
6+
h("input", {
7+
checked: porps.checked,
8+
type: "checkbox",
9+
style: { "pointer-events": "none" },
10+
});
11+
},
12+
{
13+
props: {
14+
checked: {
15+
type: Boolean,
16+
default: false,
17+
},
18+
},
19+
}
20+
);

en/guide/09-update.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Go to the `Settings` page, turn on `Enable Rolling Release`, install the `滚动
1818

1919
Update normally is not user-friendly on macOS, but the experience is better on Windows and GNU/Linux. However, the download size is larger than Rolling Release, and it can be slower if the network connection is poor
2020

21-
滚动更新对三个平台都很友好,且支持自动更新。能够获取更快、更新、更稳定的 GUI 体验。
2221
Rolling Release is user-friendly on all three platforms and supports automatic updates. It provides faster, newer and more stable GUI experience
2322

2423
Note: Rolling Release is only supported by `GUI.for.Clash v1.8.2` and `GUI.for.SingBox v1.8.1` or later, and `Enable Rolling Release` must be turned on, the `滚动发行` plugin must be installed

en/guide/index.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup>
2+
import CheckBox from '/components/CheckBox'
3+
24
const GUI_List = [
35
'GUI.for.Clash',
46
'GUI.for.SingBox'
@@ -31,7 +33,7 @@ The applications based on this project are neither VPN nor proxy applications. T
3133

3234
- Please do not download any of **our** applications aside from the GitHub Releases page. Otherwise, security may be compromised, this is extremely IMPORTANT!
3335

34-
- To all blog and website owners, please do not provide any download links other than GitHub Releases on the grounds of *'convenience'* or *'caring for readers'*
36+
- To all blog and website owners, please do not provide any download links other than GitHub Releases on the grounds of _'convenience'_ or _'caring for readers'_
3537

3638
- Please do not launch any applications downloaded from unknown sources, even if they are uploaded by the developers of this project in the group. GitHub Releases is the only trustworthy source!
3739

@@ -55,16 +57,16 @@ The applications based on this project are neither VPN nor proxy applications. T
5557
5658
## To Do
5759

58-
- [ ] Migrate the framework to wails-v3-alpha
60+
- <CheckBox /> Migrate the framework to wails-v3-alpha
5961

60-
- [ ] Develop a visualized traffic usage plugin
62+
- <CheckBox /> Develop a visualized traffic usage plugin
6163

62-
- [ ] More GNU/Linux desktops support
64+
- <CheckBox /> More GNU/Linux desktops support
6365

64-
- [ ] TUN mode in macOS and GNU/Linux
66+
- <CheckBox checked /> TUN mode in macOS and GNU/Linux
6567

66-
- [ ] Better installation and upgrade experience on macOS and GNU/Linux
68+
- <CheckBox /> Better installation and upgrade experience on macOS and GNU/Linux
6769

68-
- [ ] Rewrite some functions for GUI.for.SingBox
70+
- <CheckBox /> Rewrite some functions for GUI.for.SingBox
6971

70-
- [ ] GUI applications for Android™
72+
- <CheckBox /> GUI applications for Android™

zh/guide/index.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup>
2+
import CheckBox from '/components/CheckBox'
3+
24
const GUI_List = [
35
'GUI.for.Clash',
46
'GUI.for.SingBox'
@@ -55,16 +57,16 @@ GUI.for.Cores 项目旨在快速生成 core 的配置文件,并将其参数以
5557
5658
## 开发计划
5759

58-
- [ ] 迁移框架至 wails-v3-alpha 版本
60+
- <CheckBox /> 迁移框架至 wails-v3-alpha 版本
5961

60-
- [ ] 开发一个流量可视化插件
62+
- <CheckBox /> 开发一个流量可视化插件
6163

62-
- [ ] 支持更多的 GNU/Linux 桌面
64+
- <CheckBox /> 支持更多的 GNU/Linux 桌面
6365

64-
- [ ] 支持 macOS、 GNU/Linux 下的 TUN 模式
66+
- <CheckBox checked /> 支持 macOS、 GNU/Linux 下的 TUN 模式
6567

66-
- [ ] 优化 macOS、 GNU/Linux 下的安装升级体验
68+
- <CheckBox /> 优化 macOS、 GNU/Linux 下的安装升级体验
6769

68-
- [ ] 重构 GUI.for.SingBox 的部分功能
70+
- <CheckBox /> 重构 GUI.for.SingBox 的部分功能
6971

70-
- [ ] 开发安卓端的 GUI 系列
72+
- <CheckBox /> 开发安卓端的 GUI 系列

0 commit comments

Comments
 (0)