Skip to content

Commit 62c3f01

Browse files
authored
功能增强
1. 界面优化,修复底部遮挡的问题 2. 更新README 3. 更新依赖
2 parents e0417fd + e3930b5 commit 62c3f01

File tree

7 files changed

+19
-17
lines changed

7 files changed

+19
-17
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# ZeroTier for KSU
22

3+
[![GitHub Release](https://img.shields.io/github/v/release/powerAn2020/ZeroTierForKSU)](https://github.com/powerAn2020/ZeroTierForKSU/releases)
4+
[![GitHub Download](https://img.shields.io/github/downloads/powerAn2020/ZeroTierForKSU/total)](https://github.com/powerAn2020/ZeroTierForKSU/releases)
5+
36
基于KSU WEBUI实现的Zertier客户端,同时支持部分zerotier服务端功能。
4-
Magisk需要搭配[5ec1cff/KsuWebUIStandalone](https://github.com/5ec1cff/KsuWebUIStandalone)使用
5-
自1.14.0之后KSU版本需要在`11928`以上才能正常使用UI,或者使用[5ec1cff/KsuWebUIStandalone](https://github.com/5ec1cff/KsuWebUIStandalone)
7+
Magisk需要搭配[5ec1cff/KsuWebUIStandalone](https://github.com/5ec1cff/KsuWebUIStandalone)使用。
8+
9+
自1.14.0之后KSU版本需要在`11928`以上才能正常使用UI
610

711
## BUG
812

@@ -15,10 +19,8 @@ Magisk需要搭配[5ec1cff/KsuWebUIStandalone](https://github.com/5ec1cff/KsuWeb
1519
## TODO
1620

1721
1. [x] 流水线增加自定义zerotier版本编译。[~~据说1.8.9版本没有zt切换网络导致全局断网的问题~~](https://github.com/eventlOwOp/zerotier-magisk/issues/7#issuecomment-2069526989),经过测试,依然复现,而且还有漏洞,官方推荐1.12.x版本以上有安全补丁,别降级了。
18-
2. [ ] 新建zerotier路由规则表(没学会。先放着吧)
19-
3. [X] 增加管理页面,需要自行准备[API Token](https://docs.zerotier.com/api/tokens/#zerotier-central-token)
20-
4. [x] 国际化
21-
5. [ ] 等待新版KSU发布后,重新发版,现在是以补丁的形式提前用上了KSU的某些未修复的API
22+
2. [x] 增加管理页面,需要自行准备[API Token](https://docs.zerotier.com/api/tokens/#zerotier-central-token)
23+
3. [x] 国际化
2224

2325
## 免责声明
2426

@@ -166,4 +168,4 @@ Example:
166168
- [taamarin/box_for_magisk](https://github.com/taamarin/box_for_magisk/blob/master/box/scripts/box.inotify)
167169
- [stunnel/static-curl](https://github.com/stunnel/static-curl)
168170
- [tiann/KernelSU](https://github.com/tiann/KernelSU)
169-
- [shell脚本如何优雅的打印帮助信息](https://blog.csdn.net/lhl_blog/article/details/107409694)
171+
- [shell脚本如何优雅的打印帮助信息](https://blog.csdn.net/lhl_blog/article/details/107409694)

changelog_dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
界面优化 1.网络管理详情页成员默认展示短昵称 2.设置页面启动服务后刷新顶部状态栏 3. 调整流水线检查时间
1+
Merge pull request #41 from powerAn2020/dependabot/npm_and_yarn/ui-src/dev/unplugin-auto-import-19.0.0 Bump unplugin-auto-import from 0.18.6 to 19.0.0 in /ui-src

ui-src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"buffer": "^6.0.3",
1616
"kernelsu": "^1.0.6",
17-
"pinia": "^2.2.2",
17+
"pinia": "^3.0.1",
1818
"vant": "^4.9.7",
1919
"vue": "^3.5.10",
2020
"vue-i18n": "^11.0.1",

ui-src/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<router-view v-slot="{ Component }">
2323
<component ref="routerViewRef" :is="Component" :theme="theme" />
2424
</router-view>
25-
<div style="height: 0.1rem;"></div>
25+
<div style="height: 0.1rem;padding-bottom:50px;"></div>
2626
<van-tabbar route safe-area-inset-bottom>
2727
<van-tabbar-item replace to="/" icon="home-o">{{ t('common.dash') }}</van-tabbar-item>
2828
<van-tabbar-item replace to="/peers" icon="friends-o">{{ t('common.peers') }}</van-tabbar-item>

ui-src/src/Home.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ const newAdd = (index) => {
157157
readonly.value = true;
158158
const editObj = JSON.parse(JSON.stringify(items[index]));
159159
info.allowDNS = editObj.allowDNS,
160-
info.allowDefault = editObj.allowDefault,
161-
info.allowManaged = editObj.allowManaged,
162-
info.allowGlobal = editObj.allowGlobal,
163-
info.name = editObj.name,
164-
info.id = editObj.id
160+
info.allowDefault = editObj.allowDefault,
161+
info.allowManaged = editObj.allowManaged,
162+
info.allowGlobal = editObj.allowGlobal,
163+
info.name = editObj.name,
164+
info.id = editObj.id
165165
} else {
166166
readonly.value = false;
167167
reset()

update_arm64_dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.14.2","versionCode":10490,"zipUrl":"https://github.com/powerAn2020/ZeroTierForKSU/actions/runs/12254099171/artifacts/2299000950","changelog":"https://raw.githubusercontent.com/powerAn2020/ZeroTierOneForKSU/dev/changelog_dev.md"}
1+
{"version":"1.14.2","versionCode":10498,"zipUrl":"https://github.com/powerAn2020/ZeroTierForKSU/actions/runs/12854554532/artifacts/2452941897","changelog":"https://raw.githubusercontent.com/powerAn2020/ZeroTierOneForKSU/dev/changelog_dev.md"}

update_arm_dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.14.2","versionCode":10490,"zipUrl":"https://github.com/powerAn2020/ZeroTierForKSU/actions/runs/12254099171/artifacts/2299001031","changelog":"https://raw.githubusercontent.com/powerAn2020/ZeroTierOneForKSU/dev/changelog_dev.md"}
1+
{"version":"1.14.2","versionCode":10498,"zipUrl":"https://github.com/powerAn2020/ZeroTierForKSU/actions/runs/12854554532/artifacts/2452941923","changelog":"https://raw.githubusercontent.com/powerAn2020/ZeroTierOneForKSU/dev/changelog_dev.md"}

0 commit comments

Comments
 (0)