内核管理下载的内核保存于easytier/cache目录,下次切换不用下载

This commit is contained in:
黑先森
2024-11-27 19:47:38 +08:00
parent 55c6e49d4a
commit 73ae6b90db
5 changed files with 18 additions and 8 deletions
+4
View File
@@ -29,6 +29,7 @@ Releases [https://github.com/EasyTier/EasytierGame/releases](https://github.c
![game-step5](/assets/game-step5.png)
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
- 1.2.6内核管理下载的内核 保存于easytier/cache目录,下次切换不用二次下载
![game-step6](/assets/game-step6.png)
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
@@ -52,6 +53,9 @@ Releases [https://github.com/EasyTier/EasytierGame/releases](https://github.c
- 1.2.5新增 自建服务器功能,可以自行搭建服务器,但是需要一些网络知识,具体可以查看文档[自建服务器](https://www.easytier.top/guide/network/host-public-server.html)
![game-step12](/assets/game-step12.png)
- 1.2.6重写 自建服务器功能,可以自行搭建服务器,但是需要一些网络知识,具体可以查看文档[自建服务器](https://www.easytier.top/guide/network/host-public-server.html),也可查看帮助.txt
![game-step12](/assets/game-step12.png)
## 特性
- 基于easytier组网工具开发,界面清晰简单
Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

-1
View File
@@ -942,7 +942,6 @@
let serverLogsTimer: NodeJS.Timeout | null = null;
onMounted(async () => {
// await handleUpdateCore(); //默认不自动更新
await initGuiJson();
await compatibleInitAutoStart();
// await initAutoStart();
+5 -6
View File
@@ -158,24 +158,23 @@ import { getCurrentWindow } from "@tauri-apps/api/window";
}
});
data.member = peerInfo;
if(!timer) {
startTimer();
}
startTimer();
};
const startTimer = async () => {
await listenOutput();
timer = setInterval(async () => {
timer && clearTimeout(timer);
timer = setTimeout(async () => {
await listenOutput();
}, 1000);
};
const stopTimer = () => {
timer && clearInterval(timer);
timer && clearTimeout(timer);
timer = null;
}
onMounted(async () => {
await listenOutput();
await startTimer();
});
+9 -1
View File
@@ -13,4 +13,12 @@
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
3. 删除easytierGame文件夹
3. 删除easytierGame文件夹
[没有服务器,怎么自建服务]
1. 点击 启动联机 按钮旁边的箭头 选择自建服务 设置好端口号后 点击启动服务器
2. 搜索一下 openFrp mossFrp sakurafrp 等 将你的本地服务通过它(们)代理到公网
3. 将代理之后的地址发给别人,他们就可以通过这个加入你的服务了