mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
内核管理下载的内核保存于easytier/cache目录,下次切换不用下载
This commit is contained in:
@@ -29,6 +29,7 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
||||

|
||||
|
||||
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
|
||||
- 1.2.6内核管理下载的内核 保存于easytier/cache目录,下次切换不用二次下载
|
||||

|
||||
|
||||
- 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)
|
||||

|
||||
|
||||
- 1.2.6重写 自建服务器功能,可以自行搭建服务器,但是需要一些网络知识,具体可以查看文档[自建服务器](https://www.easytier.top/guide/network/host-public-server.html),也可查看帮助.txt
|
||||

|
||||
|
||||
## 特性
|
||||
|
||||
- 基于easytier组网工具开发,界面清晰简单
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
@@ -942,7 +942,6 @@
|
||||
let serverLogsTimer: NodeJS.Timeout | null = null;
|
||||
|
||||
onMounted(async () => {
|
||||
// await handleUpdateCore(); //默认不自动更新
|
||||
await initGuiJson();
|
||||
await compatibleInitAutoStart();
|
||||
// await initAutoStart();
|
||||
|
||||
+5
-6
@@ -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
@@ -13,4 +13,12 @@
|
||||
|
||||
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
|
||||
|
||||
3. 删除easytierGame文件夹
|
||||
3. 删除easytierGame文件夹
|
||||
|
||||
|
||||
[没有服务器,怎么自建服务]
|
||||
1. 点击 启动联机 按钮旁边的箭头 选择自建服务 设置好端口号后 点击启动服务器
|
||||
|
||||
2. 搜索一下 openFrp mossFrp sakurafrp 等 将你的本地服务通过它(们)代理到公网
|
||||
|
||||
3. 将代理之后的地址发给别人,他们就可以通过这个加入你的服务了
|
||||
Reference in New Issue
Block a user