mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8120b65c9b | ||
|
|
7af0683775 | ||
|
|
4191a0a12d | ||
|
|
66d8bff8b4 | ||
|
|
c740039325 | ||
|
|
589511e356 | ||
|
|
c2d060b202 | ||
|
|
d2cd72fed9 | ||
|
|
efee636180 | ||
|
|
4e3f1cbd89 | ||
|
|
c23191fe45 | ||
|
|
0776b074d2 | ||
|
|
cdd3fada1f | ||
|
|
fe785f6066 | ||
|
|
37fd7b6fb0 | ||
|
|
096d5f03da | ||
|
|
1813240378 |
@@ -28,7 +28,7 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
- 如果还是无法满足您的需求,可以使用配置文件进行启动,具体如何配置,可以查看文档[配置文件](/guide/network/config-file.html)
|
- 如果还是无法满足您的需求,可以使用配置文件进行启动,具体如何配置,可以查看文档[配置文件](/guide/network/config-file.html)
|
||||||

|

|
||||||
|
|
||||||
- easytier内核升级后,可以点击更新插件按钮就可以进行更新,但是需要出国,如果无法更新,可以在群里获取
|
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
|
||||||

|

|
||||||
|
|
||||||
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
||||||
@@ -46,6 +46,12 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
**解压zip后你可以查看 easytier/config_template.json 里的注释进行配置**
|
**解压zip后你可以查看 easytier/config_template.json 里的注释进行配置**
|
||||||

|

|
||||||
|
|
||||||
|
- 1.2.3新增了帮助.txt 位于“easytier/帮助.txt" 内含 无法打开界面和卸载EasytierGame的办法,新增 "easytier/clear_local_data.bat" 用于清除easytierGame的本地缓存数据(需要管理员模式运行)
|
||||||
|

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

|
||||||
|
|
||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
- 基于easytier组网工具开发,界面清晰简单
|
- 基于easytier组网工具开发,界面清晰简单
|
||||||
@@ -59,6 +65,13 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
|
|
||||||
支持Windows 11 、Windows 10 、 Windows 7
|
支持Windows 11 、Windows 10 、 Windows 7
|
||||||
|
|
||||||
|
## 群聊交流
|
||||||
|
- 主群 EasyTier 支持
|
||||||
|
### 949700262
|
||||||
|
|
||||||
|
- EasyTier游戏联机交流群
|
||||||
|
### 596667137
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 请不要将本程序和仓库代码用于任何违法用途,由此产生的一切后果,仓库所有者和参与开发的人员不承担任何责任
|
## 请不要将本程序和仓库代码用于任何违法用途,由此产生的一切后果,仓库所有者和参与开发的人员不承担任何责任
|
||||||
|
|||||||
@@ -6,6 +6,30 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
import { initTheme } from "@/composables/theme";
|
import { initTheme } from "@/composables/theme";
|
||||||
|
import { warn, debug, trace, info, error } from "@tauri-apps/plugin-log";
|
||||||
|
function forwardConsole(fnName: "log" | "debug" | "info" | "warn" | "error", logger: (message: string) => Promise<void>) {
|
||||||
|
const original = console[fnName];
|
||||||
|
console[fnName] = (message) => {
|
||||||
|
original(message);
|
||||||
|
if (import.meta.env.PROD) {
|
||||||
|
try {
|
||||||
|
if (typeof message === "string") {
|
||||||
|
logger(message);
|
||||||
|
} else {
|
||||||
|
logger(JSON.stringify(message));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
logger(`${message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
forwardConsole("log", info);
|
||||||
|
forwardConsole("debug", debug);
|
||||||
|
forwardConsole("info", info);
|
||||||
|
forwardConsole("warn", warn);
|
||||||
|
forwardConsole("error", error);
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
// console.log(mainStore.theme)
|
// console.log(mainStore.theme)
|
||||||
initTheme(mainStore.theme);
|
initTheme(mainStore.theme);
|
||||||
|
|||||||
@@ -27,8 +27,23 @@ html.dark body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#__easytier {
|
#__easytier {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: nowrap;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.full-label .el-form-item__label {
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.full-content .el-form-item__content {
|
||||||
|
/* height: 100%; */
|
||||||
|
align-items: flex-start;
|
||||||
|
overflow: auto;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 23 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 130 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 104 KiB |
@@ -39,7 +39,7 @@ export const updateConfigJson = async (configJsonSeverUrl: Array<string> | strin
|
|||||||
}
|
}
|
||||||
await writeTextFile(path, JSON.stringify({ serverUrl: writeServerUrl, ...otherConfig }, null, 4), { baseDir: BaseDirectory.Resource });
|
await writeTextFile(path, JSON.stringify({ serverUrl: writeServerUrl, ...otherConfig }, null, 4), { baseDir: BaseDirectory.Resource });
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
ElMessage.error(`更新config.json失败`);
|
ElMessage.error(`更新config.json失败`);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+12
-4
@@ -2,6 +2,8 @@ import { invoke } from "@tauri-apps/api/core";
|
|||||||
import { Command } from "@tauri-apps/plugin-shell";
|
import { Command } from "@tauri-apps/plugin-shell";
|
||||||
import { ElMessage, type TabPaneName } from "element-plus";
|
import { ElMessage, type TabPaneName } from "element-plus";
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
|
import { BaseDirectory } from "@tauri-apps/api/path";
|
||||||
|
import { exists } from "@tauri-apps/plugin-fs";
|
||||||
|
|
||||||
const getWinIpBroadcastPid = async () => {
|
const getWinIpBroadcastPid = async () => {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
@@ -19,17 +21,23 @@ export const handleWinipBcStart = async () => {
|
|||||||
if (!mainStore.winipBcStart) {
|
if (!mainStore.winipBcStart) {
|
||||||
try {
|
try {
|
||||||
await invoke("stop_command", { child_id: mainStore.winipBcPid || 0 });
|
await invoke("stop_command", { child_id: mainStore.winipBcPid || 0 });
|
||||||
|
const isExists = await exists("easytier/tool/WinIPBroadcast.exe", { baseDir: BaseDirectory.Resource });
|
||||||
|
if(!isExists) {
|
||||||
|
ElMessage.error(`WinipBc不存在`);
|
||||||
|
console.error(`WinipBc不存在`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
const child = await Command.create("WinIPBroadcast", ["run"]).spawn();
|
const child = await Command.create("WinIPBroadcast", ["run"]).spawn();
|
||||||
mainStore.winipBcPid = child.pid || 0;
|
mainStore.winipBcPid = child.pid || 0;
|
||||||
if (mainStore.winipBcPid) {
|
if (mainStore.winipBcPid) {
|
||||||
mainStore.winipBcStart = true;
|
mainStore.winipBcStart = true;
|
||||||
mainStore.winIpBcAutoStart = true;
|
mainStore.winIpBcAutoStart = true;
|
||||||
} else {
|
} else {
|
||||||
ElMessage.error(`启动失败`);
|
ElMessage.error(`WinipBc失败`);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error(`启动失败`);
|
ElMessage.error(`WinipBc失败`);
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mainStore.winIpBcAutoStart = false;
|
mainStore.winIpBcAutoStart = false;
|
||||||
@@ -41,7 +49,7 @@ export const handleWinipBcStart = async () => {
|
|||||||
export const initStartWinIpBroadcast = async () => {
|
export const initStartWinIpBroadcast = async () => {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
await getWinIpBroadcastPid();
|
await getWinIpBroadcastPid();
|
||||||
// console.log(mainStore.winipBcStart, mainStore.winIpBcAutoStart)
|
// console.error(mainStore.winipBcStart, mainStore.winIpBcAutoStart)
|
||||||
if (mainStore.winIpBcAutoStart && !mainStore.winipBcStart) {
|
if (mainStore.winIpBcAutoStart && !mainStore.winipBcStart) {
|
||||||
await handleWinipBcStart();
|
await handleWinipBcStart();
|
||||||
}
|
}
|
||||||
|
|||||||
+17
-5
@@ -17,7 +17,7 @@ async function toggleVisibility() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function useTray(init: boolean = false, beforExit: Function) {
|
export async function useTray(init: boolean = false, beforExit: Function, handleConnection: Function) {
|
||||||
let tray;
|
let tray;
|
||||||
try {
|
try {
|
||||||
tray = await TrayIcon.getById(DEFAULT_TRAY_NAME);
|
tray = await TrayIcon.getById(DEFAULT_TRAY_NAME);
|
||||||
@@ -28,7 +28,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
id: DEFAULT_TRAY_NAME,
|
id: DEFAULT_TRAY_NAME,
|
||||||
menu: await Menu.new({
|
menu: await Menu.new({
|
||||||
id: "main",
|
id: "main",
|
||||||
items: await generateMenuItem(beforExit),
|
items: await generateMenuItem(beforExit, handleConnection),
|
||||||
}),
|
}),
|
||||||
action: async (e) => {
|
action: async (e) => {
|
||||||
toggleVisibility();
|
toggleVisibility();
|
||||||
@@ -36,7 +36,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.warn("Error while creating tray icon:", error);
|
console.error("Error while creating tray icon:", error);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
tray.setMenu(
|
tray.setMenu(
|
||||||
await Menu.new({
|
await Menu.new({
|
||||||
id: "main",
|
id: "main",
|
||||||
items: await generateMenuItem(beforExit),
|
items: await generateMenuItem(beforExit, handleConnection),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -54,9 +54,10 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
return tray;
|
return tray;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function generateMenuItem(beforExit: Function) {
|
export async function generateMenuItem(beforExit: Function, handleConnection:Function) {
|
||||||
return [
|
return [
|
||||||
await MenuItemShow("显示 / 隐藏"),
|
await MenuItemShow("显示 / 隐藏"),
|
||||||
|
await MenuItemExchangeConnection("联机 / 断开", handleConnection),
|
||||||
await MenuItemTheme(),
|
await MenuItemTheme(),
|
||||||
await PredefinedMenuItem.new({ item: "Separator" }),
|
await PredefinedMenuItem.new({ item: "Separator" }),
|
||||||
await MenuItemExit("退出", beforExit),
|
await MenuItemExit("退出", beforExit),
|
||||||
@@ -86,6 +87,17 @@ export async function MenuItemShow(text: string) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function MenuItemExchangeConnection(text: string, handleConnection:Function) {
|
||||||
|
const menutItem = await MenuItem.new({
|
||||||
|
id: "exchangeConnection",
|
||||||
|
text,
|
||||||
|
action: async () => {
|
||||||
|
const isStart = await handleConnection();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return menutItem;
|
||||||
|
}
|
||||||
|
|
||||||
export async function MenuItemTheme() {
|
export async function MenuItemTheme() {
|
||||||
return await MenuItem.new({
|
return await MenuItem.new({
|
||||||
id: "theme",
|
id: "theme",
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ export default async (
|
|||||||
if (appWindow) {
|
if (appWindow) {
|
||||||
const appSize = await appWindow.outerSize();
|
const appSize = await appWindow.outerSize();
|
||||||
// const monitor = await currentMonitor();
|
// const monitor = await currentMonitor();
|
||||||
// console.log(monitor)
|
// console.error(monitor)
|
||||||
const factor = await appWindow.scaleFactor();
|
const factor = await appWindow.scaleFactor();
|
||||||
const appPosition = await appWindow.outerPosition();
|
const appPosition = await appWindow.outerPosition();
|
||||||
// console.log((appPosition.x + appSize.width) / 1.25);
|
// console.error((appPosition.x + appSize.width) / 1.25);
|
||||||
const logicalPosition = new PhysicalPosition(appPosition.x + appSize.width, appPosition.y).toLogical(factor);
|
const logicalPosition = new PhysicalPosition(appPosition.x + appSize.width, appPosition.y).toLogical(factor);
|
||||||
defaultOpts.parent = appWindow;
|
defaultOpts.parent = appWindow;
|
||||||
// console.log(logicalPosition);
|
// console.error(logicalPosition);
|
||||||
defaultOpts.x = logicalPosition.x;
|
defaultOpts.x = logicalPosition.x;
|
||||||
defaultOpts.y = logicalPosition.y;
|
defaultOpts.y = logicalPosition.y;
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-3
@@ -3,10 +3,11 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"author": "leizi97",
|
"author": "leizi97",
|
||||||
"description": "A simple network initiator based on Easytier",
|
"description": "A simple network initiator based on Easytier",
|
||||||
"version": "1.2.1",
|
"version": "1.2.6",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
||||||
"build": "nuxt generate --dotenv env/.env.prod"
|
"build": "nuxt generate --dotenv env/.env.prod",
|
||||||
|
"release": "node zip.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@element-plus/icons-vue": "^2.3.1",
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
@@ -20,15 +21,17 @@
|
|||||||
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
||||||
"@tauri-apps/plugin-fs": "~2",
|
"@tauri-apps/plugin-fs": "~2",
|
||||||
"@tauri-apps/plugin-http": "^2.0.1",
|
"@tauri-apps/plugin-http": "^2.0.1",
|
||||||
|
"@tauri-apps/plugin-log": "^2.0.0",
|
||||||
"@tauri-apps/plugin-shell": "~2",
|
"@tauri-apps/plugin-shell": "~2",
|
||||||
"@tauri-apps/plugin-window-state": "~2",
|
"@tauri-apps/plugin-window-state": "~2",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
||||||
"@vueuse/core": "^11.2.0",
|
"@vueuse/core": "^11.2.0",
|
||||||
|
"archiver": "^7.0.1",
|
||||||
"element-plus": "^2.8.7",
|
"element-plus": "^2.8.7",
|
||||||
"less": "^4.2.0",
|
"less": "^4.2.0",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"nuxt": "^3.13.2",
|
"nuxt": "^3.14.1592",
|
||||||
"pinia": "^2.2.6",
|
"pinia": "^2.2.6",
|
||||||
"pinia-plugin-persistedstate": "^4.1.3",
|
"pinia-plugin-persistedstate": "^4.1.3",
|
||||||
"postcss": "^8.4.38",
|
"postcss": "^8.4.38",
|
||||||
|
|||||||
+3
-3
@@ -76,8 +76,8 @@
|
|||||||
|
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<div><ElCheckbox v-model="mainStore.config.enablExitNode">允许此节点成为出口节点</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.enablExitNode">允许此节点成为出口节点</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.disableEncryption">禁用对等节点通信的加密,默认为false,必须与对等节点相同</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.disableEncryption">禁用对等节点通信的加密,默认为启用,必须与对等节点相同</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.multiThread">使用多线程运行时,默认为单线程</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.multiThread">启用多线程运行</ElCheckbox></div>
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
|
|
||||||
<div><ElCheckbox v-model="mainStore.config.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
mainStore.$subscribe(async (...a) => {
|
mainStore.$subscribe(async (...a) => {
|
||||||
// console.log("subscribe", a);
|
// console.error("subscribe", a);
|
||||||
await appWindow.emitTo("main", "config", { config: { ...mainStore.config }, createConfigInEasytier: mainStore.createConfigInEasytier });
|
await appWindow.emitTo("main", "config", { config: { ...mainStore.config }, createConfigInEasytier: mainStore.createConfigInEasytier });
|
||||||
// if(mainStore.createConfigInEasytier) {
|
// if(mainStore.createConfigInEasytier) {
|
||||||
// updateConfigJson();
|
// updateConfigJson();
|
||||||
|
|||||||
+463
-201
@@ -1,20 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<ElForm
|
<ElForm
|
||||||
|
v-if="!mainStore.enableCreateServer"
|
||||||
size="small"
|
size="small"
|
||||||
label-position="top"
|
label-position="top"
|
||||||
:model="config"
|
:model="config"
|
||||||
>
|
>
|
||||||
<!-- element-loading-custom-class="config-start"
|
|
||||||
v-loading="mainStore.configStartEnable"
|
|
||||||
:element-loading-spinner="'<path />'"
|
|
||||||
element-loading-text="-------已经启用配置文件,界面配置不再生效-------" -->
|
|
||||||
<!-- <div> -->
|
|
||||||
<ElFormItem
|
<ElFormItem
|
||||||
label="服务器"
|
label="服务器"
|
||||||
prop="serverUrl"
|
prop="serverUrl"
|
||||||
|
class="full-label"
|
||||||
>
|
>
|
||||||
<template #label>
|
<template #label>
|
||||||
<div class="flex items-center gap-[0_5px]">
|
<div class="flex items-center flex-nowrap gap-[0_5px]">
|
||||||
<div>服务器</div>
|
<div>服务器</div>
|
||||||
<span>-</span>
|
<span>-</span>
|
||||||
<ElTag
|
<ElTag
|
||||||
@@ -29,31 +26,26 @@
|
|||||||
>
|
>
|
||||||
获取内核版本
|
获取内核版本
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<ElTag
|
<div
|
||||||
v-else
|
v-else
|
||||||
type="info"
|
class="flex-1 truncate"
|
||||||
>
|
>
|
||||||
{{ data.coreVersion }}
|
<ElTooltip :content="data.coreVersion">
|
||||||
</ElTag>
|
<ElTag type="info">
|
||||||
<ElPopconfirm
|
{{ data.coreVersion }}
|
||||||
width="325"
|
</ElTag>
|
||||||
cancel-button-text="取消"
|
</ElTooltip>
|
||||||
confirm-button-text="继续"
|
</div>
|
||||||
title="内核从github下载,需要出国工具,可能下载缓慢或失败,是否继续?
|
<ElButton
|
||||||
也可以从官方群里手动下载后解压到easytier-game.exe同级目录下的easytier目录里,全部覆盖即可"
|
class="ml-auto"
|
||||||
@confirm="handleUpdateCore"
|
:disabled="data.isStart"
|
||||||
|
@click="handleCoreManagement"
|
||||||
|
:loading="data.update"
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
>
|
>
|
||||||
<template #reference>
|
内核管理
|
||||||
<ElButton
|
</ElButton>
|
||||||
:disabled="data.isStart"
|
|
||||||
:loading="data.update"
|
|
||||||
type="warning"
|
|
||||||
size="small"
|
|
||||||
>
|
|
||||||
{{ data.coreVersion ? "更新内核" : "下载内核" }}
|
|
||||||
</ElButton>
|
|
||||||
</template>
|
|
||||||
</ElPopconfirm>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ElSelect
|
<ElSelect
|
||||||
@@ -187,126 +179,296 @@
|
|||||||
></ElInput>
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
</div>
|
</div>
|
||||||
<!-- </div> -->
|
</ElForm>
|
||||||
<div class="flex items-start">
|
<ElForm
|
||||||
<div>
|
v-else
|
||||||
<div>
|
size="small"
|
||||||
<ElDropdown
|
label-position="top"
|
||||||
@command="handleStartCommand"
|
class="flex-1 overflow-hidden pb-[5px]"
|
||||||
split-button
|
:model="config"
|
||||||
trigger="click"
|
>
|
||||||
size="default"
|
<ElFormItem
|
||||||
:type="!data.isStart ? 'primary' : 'danger'"
|
label="白名单"
|
||||||
:disabled="data.startLoading || !data.coreVersion || data.update"
|
prop="ServerWhiteList"
|
||||||
@click="handleConnection"
|
class="full-label full-content overflow-hidden !flex flex-col h-full !mb-[0]"
|
||||||
|
>
|
||||||
|
<template #label>
|
||||||
|
<div class="flex items-center flex-nowrap gap-[0_5px]">
|
||||||
|
<div>白名单</div>
|
||||||
|
<span>-</span>
|
||||||
|
<ElTag
|
||||||
|
effect="dark"
|
||||||
|
:type="data.isStart ? 'success' : 'info'"
|
||||||
>
|
>
|
||||||
{{ !data.isStart ? "启动联机" : "停止联机" }}
|
{{ data.isSuccessGetIp ? "运行成功" : data.isStart && !data.isSuccessGetIp ? "运行中" : "未启动" }}
|
||||||
<template #dropdown>
|
</ElTag>
|
||||||
<ElDropdownMenu>
|
<ElButton
|
||||||
<ElDropdownItem
|
v-if="!data.coreVersion"
|
||||||
command="import_config"
|
@click="getCoreVersion(true)"
|
||||||
:icon="Link"
|
|
||||||
>
|
|
||||||
导入配置
|
|
||||||
</ElDropdownItem>
|
|
||||||
<ElDropdownItem
|
|
||||||
command="share_config"
|
|
||||||
:icon="Share"
|
|
||||||
>
|
|
||||||
分享配置
|
|
||||||
</ElDropdownItem>
|
|
||||||
<ElDropdownItem
|
|
||||||
:icon="Tools"
|
|
||||||
command="toml"
|
|
||||||
:disabled="data.isStart"
|
|
||||||
>
|
|
||||||
使用外部配置文件
|
|
||||||
</ElDropdownItem>
|
|
||||||
</ElDropdownMenu>
|
|
||||||
</template>
|
|
||||||
</ElDropdown>
|
|
||||||
</div>
|
|
||||||
<div class="mt-[6px] pl-[2px]">
|
|
||||||
<ElTooltip
|
|
||||||
placement="left"
|
|
||||||
content="日志"
|
|
||||||
>
|
>
|
||||||
<ElButton
|
获取内核版本
|
||||||
:type="!data.logVisible ? 'info' : 'warning'"
|
</ElButton>
|
||||||
@click="handleShowLogDialog"
|
<div
|
||||||
:icon="List"
|
v-else
|
||||||
size="small"
|
class="flex-1 truncate"
|
||||||
plain
|
|
||||||
></ElButton>
|
|
||||||
</ElTooltip>
|
|
||||||
<ElTooltip
|
|
||||||
placement="left"
|
|
||||||
content="成员"
|
|
||||||
>
|
>
|
||||||
<ElButton
|
<ElTooltip :content="data.coreVersion">
|
||||||
@click="handleShowMemberDialog"
|
<ElTag type="info">
|
||||||
:icon="UserFilled"
|
{{ data.coreVersion }}
|
||||||
plain
|
</ElTag>
|
||||||
type="success"
|
</ElTooltip>
|
||||||
size="small"
|
</div>
|
||||||
></ElButton>
|
<ElButton
|
||||||
</ElTooltip>
|
class="ml-auto"
|
||||||
</div>
|
:disabled="data.isStart"
|
||||||
</div>
|
@click="handleCoreManagement"
|
||||||
<div class="ml-auto">
|
:loading="data.update"
|
||||||
<ElCheckbox
|
type="primary"
|
||||||
v-model="config.disbleP2p"
|
|
||||||
size="small"
|
|
||||||
>
|
|
||||||
强制中转
|
|
||||||
</ElCheckbox>
|
|
||||||
<ElTooltip placement="top-start" content="自启后隐藏于托盘,不显示界面">
|
|
||||||
<ElCheckbox
|
|
||||||
@change="handleAutoStartByTask"
|
|
||||||
:model-value="config.autoStart"
|
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
开机自启
|
内核管理
|
||||||
</ElCheckbox>
|
|
||||||
</ElTooltip>
|
|
||||||
<div>
|
|
||||||
<ElButton
|
|
||||||
@click="handleShowCidrDialog"
|
|
||||||
:icon="Share"
|
|
||||||
>
|
|
||||||
子网代理
|
|
||||||
</ElButton>
|
|
||||||
<ElButton
|
|
||||||
@click="handleShowAdvanceDialog"
|
|
||||||
:icon="Setting"
|
|
||||||
>
|
|
||||||
高级选项
|
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center gap-[0_5px]">
|
</template>
|
||||||
<div>
|
<div class="h-full w-full flex flex-col overflow-hidden">
|
||||||
<ElButton
|
<div class="flex-1 overflow-auto">
|
||||||
plain
|
<ElInput
|
||||||
type="primary"
|
:disabled="!mainStore.enableWhiteList"
|
||||||
size="small"
|
placeholder="一行一个,支持通配符列表,如(ab*)。当该参数的列表为空时,就不会为所有其他网络提供转发服务。"
|
||||||
:icon="MagicStick"
|
:maxlength="1000"
|
||||||
@click="handleShowToolDialog"
|
v-model="mainStore.ServerWhiteList"
|
||||||
>
|
type="textarea"
|
||||||
增强工具
|
:autosize="{
|
||||||
</ElButton>
|
minRows: 9
|
||||||
</div>
|
}"
|
||||||
<ElLink
|
resize="none"
|
||||||
class="!text-[9px] pb-[2px] ml-[8px] truncate"
|
></ElInput>
|
||||||
type="info"
|
</div>
|
||||||
:underline="false"
|
<div class="text-center">
|
||||||
@click="open('https://github.com/EasyTier/EasytierGame')"
|
<ElCheckbox v-model="mainStore.enableWhiteList">启用白名单</ElCheckbox>
|
||||||
>
|
<ElCheckbox v-model="mainStore.config.relayAllPeerrpc">转发所有对等节点的RPC数据包</ElCheckbox>
|
||||||
EasytierGame主页
|
<ElTooltip content="帮助其他虚拟网建立P2P链接">
|
||||||
</ElLink>
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</ElFormItem>
|
||||||
</ElForm>
|
</ElForm>
|
||||||
|
<div class="flex items-start mt-auto">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<ElDropdown
|
||||||
|
@command="handleStartCommand"
|
||||||
|
split-button
|
||||||
|
trigger="click"
|
||||||
|
size="default"
|
||||||
|
:type="!data.isStart ? 'primary' : 'danger'"
|
||||||
|
:disabled="data.startLoading || !data.coreVersion || data.update"
|
||||||
|
@click="handleConnection"
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
!data.isStart
|
||||||
|
? mainStore.enableCreateServer
|
||||||
|
? "启动服务"
|
||||||
|
: "启动联机"
|
||||||
|
: mainStore.enableCreateServer
|
||||||
|
? "停止服务"
|
||||||
|
: "停止联机"
|
||||||
|
}}
|
||||||
|
<template #dropdown>
|
||||||
|
<ElDropdownMenu>
|
||||||
|
<ElDropdownItem
|
||||||
|
command="import_config"
|
||||||
|
:icon="Link"
|
||||||
|
>
|
||||||
|
导入配置
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem
|
||||||
|
command="share_config"
|
||||||
|
:icon="Share"
|
||||||
|
>
|
||||||
|
分享联机相关配置
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem
|
||||||
|
disabled
|
||||||
|
>
|
||||||
|
<ElDivider class="!h-[2px] !m-0" />
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem
|
||||||
|
:icon="SetUp"
|
||||||
|
command="create_server"
|
||||||
|
>
|
||||||
|
{{ mainStore.enableCreateServer ? "我要联机" : "我要开服(自建)" }}
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem
|
||||||
|
:icon="Tools"
|
||||||
|
command="toml"
|
||||||
|
:disabled="data.isStart"
|
||||||
|
>
|
||||||
|
使用外部配置文件
|
||||||
|
</ElDropdownItem>
|
||||||
|
</ElDropdownMenu>
|
||||||
|
</template>
|
||||||
|
</ElDropdown>
|
||||||
|
</div>
|
||||||
|
<div class="mt-[6px] pl-[2px]">
|
||||||
|
<ElTooltip
|
||||||
|
placement="left"
|
||||||
|
content="日志"
|
||||||
|
>
|
||||||
|
<ElButton
|
||||||
|
:type="!data.logVisible ? 'info' : 'warning'"
|
||||||
|
@click="handleShowLogDialog"
|
||||||
|
:icon="List"
|
||||||
|
size="small"
|
||||||
|
plain
|
||||||
|
></ElButton>
|
||||||
|
</ElTooltip>
|
||||||
|
<ElTooltip
|
||||||
|
placement="left"
|
||||||
|
content="成员"
|
||||||
|
>
|
||||||
|
<ElButton
|
||||||
|
@click="handleShowMemberDialog"
|
||||||
|
:icon="UserFilled"
|
||||||
|
plain
|
||||||
|
type="success"
|
||||||
|
size="small"
|
||||||
|
></ElButton>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="ml-auto">
|
||||||
|
<ElCheckbox
|
||||||
|
v-model="config.disbleP2p"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
强制中转
|
||||||
|
</ElCheckbox>
|
||||||
|
<ElTooltip
|
||||||
|
placement="top-start"
|
||||||
|
content="自启后隐藏于托盘,不显示界面"
|
||||||
|
>
|
||||||
|
<ElCheckbox
|
||||||
|
@change="handleAutoStartByTask"
|
||||||
|
:model-value="config.autoStart"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
开机自启
|
||||||
|
</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
|
<div>
|
||||||
|
<ElButton
|
||||||
|
@click="handleShowCidrDialog"
|
||||||
|
:icon="Share"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
子网代理
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
@click="handleShowAdvanceDialog"
|
||||||
|
:icon="Setting"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
高级选项
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-[0_5px]">
|
||||||
|
<div>
|
||||||
|
<ElButton
|
||||||
|
plain
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
:icon="MagicStick"
|
||||||
|
@click="handleShowToolDialog"
|
||||||
|
>
|
||||||
|
增强工具
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
<ElLink
|
||||||
|
class="!text-[9px] pb-[2px] ml-[8px] truncate"
|
||||||
|
type="info"
|
||||||
|
:underline="false"
|
||||||
|
@click="open('https://github.com/EasyTier/EasytierGame')"
|
||||||
|
>
|
||||||
|
EasytierGame主页
|
||||||
|
</ElLink>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ElDialog
|
||||||
|
width="95%"
|
||||||
|
top="10px"
|
||||||
|
append-to-body
|
||||||
|
:z-index="10"
|
||||||
|
class="!mb-0"
|
||||||
|
v-model="coreManagementData.visible"
|
||||||
|
:close-on-press-escape="false"
|
||||||
|
title="内核管理"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<ElText>当前版本: {{ data.coreVersion || "-" }}</ElText>
|
||||||
|
</div>
|
||||||
|
<div class="mt-[10px] pb-[5px]">
|
||||||
|
<ElText class="!mr-[10px]">选择一个内核版本安装</ElText>
|
||||||
|
<ElButton
|
||||||
|
:loading="coreManagementData.loading"
|
||||||
|
@click="getReleaseList"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
刷新
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
<ElSelect
|
||||||
|
placeholder="请选择内核版本"
|
||||||
|
no-data-text="正在获取中..."
|
||||||
|
popper-class="!h-[120px]"
|
||||||
|
v-model="coreManagementData.data"
|
||||||
|
>
|
||||||
|
<ElOption
|
||||||
|
v-for="(release, idx) in data.releaseList"
|
||||||
|
:key="`${idx}-ray`"
|
||||||
|
:label="release[0]"
|
||||||
|
:value="`${release[2]}<>${release[1]}`"
|
||||||
|
>
|
||||||
|
{{ release ? release[0] : "" }}
|
||||||
|
</ElOption>
|
||||||
|
</ElSelect>
|
||||||
|
<div class="pb-[5px] mt-[10px]">
|
||||||
|
<ElTooltip content="不使用出国软件也能告诉下载github Release包的地址,可自行搜索替换使用">
|
||||||
|
<ElText>github下载加速地址</ElText>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
<ElInput
|
||||||
|
v-model="mainStore.githubFastUrl"
|
||||||
|
placeholder="请输入github加速地址"
|
||||||
|
></ElInput>
|
||||||
|
<template #footer>
|
||||||
|
<div class="text-right">
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
:loading="data.update"
|
||||||
|
@click="handleInstallCore"
|
||||||
|
type="primary"
|
||||||
|
>
|
||||||
|
安装选中内核
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
type="warning"
|
||||||
|
@click="addQQGroup"
|
||||||
|
>
|
||||||
|
加群获取
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
@click="coreManagementData.visible = false"
|
||||||
|
>
|
||||||
|
取消
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</ElDialog>
|
||||||
<ElDialog
|
<ElDialog
|
||||||
width="95%"
|
width="95%"
|
||||||
top="10px"
|
top="10px"
|
||||||
@@ -400,7 +562,7 @@
|
|||||||
import { invoke } from "@tauri-apps/api/core";
|
import { invoke } from "@tauri-apps/api/core";
|
||||||
import { listen } from "@tauri-apps/api/event";
|
import { listen } from "@tauri-apps/api/event";
|
||||||
import { open, Command } from "@tauri-apps/plugin-shell";
|
import { open, Command } from "@tauri-apps/plugin-shell";
|
||||||
import { QuestionFilled, Delete, List, UserFilled, Setting, Share, RefreshRight, Link, Tools, MagicStick } from "@element-plus/icons-vue";
|
import { QuestionFilled, Delete, List, UserFilled, Setting, Share, RefreshRight, Link, Tools, MagicStick, SetUp } from "@element-plus/icons-vue";
|
||||||
import { reactive, onBeforeUnmount, onMounted } from "vue";
|
import { reactive, onBeforeUnmount, onMounted } from "vue";
|
||||||
import { useTray, setTrayRunState, setTrayTooltip } from "~/composables/tray";
|
import { useTray, setTrayRunState, setTrayTooltip } from "~/composables/tray";
|
||||||
import { initStartWinIpBroadcast } from "~/composables/netcard";
|
import { initStartWinIpBroadcast } from "~/composables/netcard";
|
||||||
@@ -415,21 +577,29 @@
|
|||||||
import { updateConfigJson } from "~/composables/configJson";
|
import { updateConfigJson } from "~/composables/configJson";
|
||||||
import { writeText, readText } from "@tauri-apps/plugin-clipboard-manager";
|
import { writeText, readText } from "@tauri-apps/plugin-clipboard-manager";
|
||||||
import { sortedUniq, uniq } from "lodash-es";
|
import { sortedUniq, uniq } from "lodash-es";
|
||||||
import { bounce } from "~/utils";
|
import { bounce, addQQGroup } from "~/utils";
|
||||||
|
import { ElConfirmDanger, ElConfirmPrimary } from "~/utils/element";
|
||||||
|
|
||||||
let is_close = false;
|
let is_close = false;
|
||||||
|
|
||||||
const tray = await useTray(true, async () => {
|
const tray = await useTray(
|
||||||
is_close = true;
|
true,
|
||||||
await invoke("stop_command", { child_id: listenObj.thread_id || 0 });
|
async () => {
|
||||||
await invoke("stop_command", { child_id: data.winipBcPid || 0 });
|
is_close = true;
|
||||||
});
|
await invoke("stop_command", { child_id: listenObj.thread_id || 0 });
|
||||||
|
await invoke("stop_command", { child_id: data.winipBcPid || 0 });
|
||||||
|
},
|
||||||
|
async () => {
|
||||||
|
await handleConnection();
|
||||||
|
return data.isStart;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const config = mainStore.config;
|
const config = mainStore.config;
|
||||||
// console.log(config);
|
// console.error(config);
|
||||||
const protocols = ["tcp", "udp", "ws", "wss", "wg", "quic"];
|
const protocols = ["tcp", "udp", "ws", "wss", "wg", "quic"];
|
||||||
const data = reactive({
|
const data = reactive<{ [key: string]: any; releaseList: Array<Array<string>> }>({
|
||||||
logVisible: false,
|
logVisible: false,
|
||||||
cidrVisible: false,
|
cidrVisible: false,
|
||||||
advanceVisible: false,
|
advanceVisible: false,
|
||||||
@@ -440,7 +610,7 @@
|
|||||||
log: "",
|
log: "",
|
||||||
update: false,
|
update: false,
|
||||||
releaseList: [],
|
releaseList: [],
|
||||||
coreVersion: "",
|
coreVersion: "-",
|
||||||
isSuccessGetIp: false,
|
isSuccessGetIp: false,
|
||||||
startLoading: false,
|
startLoading: false,
|
||||||
isStart: false,
|
isStart: false,
|
||||||
@@ -460,13 +630,19 @@
|
|||||||
data: ""
|
data: ""
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const coreManagementData = reactive<{ data: ""; [key: string]: any }>({
|
||||||
|
visible: false,
|
||||||
|
loading: false,
|
||||||
|
data: ""
|
||||||
|
});
|
||||||
|
|
||||||
const closePrevent = async () => {
|
const closePrevent = async () => {
|
||||||
const appWindow = getCurrentWindow();
|
const appWindow = getCurrentWindow();
|
||||||
if (appWindow.label == "main") {
|
if (appWindow.label == "main") {
|
||||||
appWindow.onCloseRequested(async event => {
|
appWindow.onCloseRequested(async event => {
|
||||||
// console.log(appWindow.label);
|
// console.error(appWindow.label);
|
||||||
if (!is_close) {
|
if (!is_close) {
|
||||||
// console.log(1);
|
// console.error(1);
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
appWindow.hide();
|
appWindow.hide();
|
||||||
}
|
}
|
||||||
@@ -513,7 +689,7 @@
|
|||||||
// const appWindow = getCurrentWindow();
|
// const appWindow = getCurrentWindow();
|
||||||
const unListen = await listen("command-output", async event => {
|
const unListen = await listen("command-output", async event => {
|
||||||
data.isStart = true;
|
data.isStart = true;
|
||||||
// console.log(event.payload);
|
// console.error(event.payload);
|
||||||
if (event.payload) {
|
if (event.payload) {
|
||||||
data.startLoading = false;
|
data.startLoading = false;
|
||||||
let ipv4 = /dhcp ip changed. old: None, new: Some\((\d+\.\d+\.\d+\.\d+).*\)/g.exec(event.payload as string)?.[1];
|
let ipv4 = /dhcp ip changed. old: None, new: Some\((\d+\.\d+\.\d+\.\d+).*\)/g.exec(event.payload as string)?.[1];
|
||||||
@@ -526,7 +702,7 @@
|
|||||||
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ((event.payload as string).includes("new peer connection added")) {
|
if ((event.payload as string).includes("new peer connection added") && !data.isSuccessGetIp) {
|
||||||
await setTrayRunState(tray, true);
|
await setTrayRunState(tray, true);
|
||||||
data.isSuccessGetIp = true;
|
data.isSuccessGetIp = true;
|
||||||
await setTrayTooltip(tray, `IP: ${config.ipv4}`);
|
await setTrayTooltip(tray, `IP: ${config.ipv4}`);
|
||||||
@@ -548,7 +724,7 @@
|
|||||||
}
|
}
|
||||||
).execute();
|
).execute();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
ElMessage.error("跃点设置失败");
|
ElMessage.error("跃点设置失败");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -570,7 +746,7 @@
|
|||||||
},
|
},
|
||||||
async listenConfigStart() {
|
async listenConfigStart() {
|
||||||
const unListen = await listen("config", event => {
|
const unListen = await listen("config", event => {
|
||||||
console.log("config", event.payload);
|
// console.error("config", event.payload);
|
||||||
const ipv4 = config.ipv4;
|
const ipv4 = config.ipv4;
|
||||||
mainStore.$patch(event.payload as any);
|
mainStore.$patch(event.payload as any);
|
||||||
config.ipv4 = ipv4;
|
config.ipv4 = ipv4;
|
||||||
@@ -594,19 +770,23 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const checkUpdate = async () => {
|
const checkUpdate = async () => {
|
||||||
await getReleaseList();
|
// const latestVersionFileName = data.releaseList?.[0]?.[0]?.[1] as string;
|
||||||
const latestVersionFileName = data.releaseList?.[0]?.[0]?.[1] as string;
|
let [downloadUrl, versionFileName] = (coreManagementData.data as string).split("<>");
|
||||||
if (latestVersionFileName) {
|
if (mainStore.githubFastUrl) {
|
||||||
// console.log(latestVersionFileName, /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName));
|
let fastUrl = mainStore.githubFastUrl.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
||||||
const latestVersion = /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName)?.[1];
|
if (!fastUrl.endsWith("/")) fastUrl += "/";
|
||||||
|
downloadUrl = fastUrl + downloadUrl;
|
||||||
|
}
|
||||||
|
if (versionFileName) {
|
||||||
|
// console.error(latestVersionFileName, /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName));
|
||||||
|
const version = /\-v(\d+\.\d+\.\d+)/g.exec(versionFileName)?.[1];
|
||||||
const currentVersion = /(\d+\.\d+\.\d+)/g.exec(data.coreVersion || "")?.[1];
|
const currentVersion = /(\d+\.\d+\.\d+)/g.exec(data.coreVersion || "")?.[1];
|
||||||
if (latestVersion && currentVersion != latestVersion) {
|
if (version && currentVersion != version) {
|
||||||
// console.log({ currentVersion, latestVersion });
|
// console.error({ currentVersion, latestVersion });
|
||||||
ElMessage.success(`更新 -> ${latestVersion}`);
|
ElMessage.success(`更新 -> ${version}`);
|
||||||
const downloadUrl = data.releaseList?.[0]?.[0]?.[2];
|
return [true, downloadUrl, versionFileName];
|
||||||
return [true, downloadUrl, latestVersionFileName];
|
} else if (currentVersion === version) {
|
||||||
} else if (currentVersion === latestVersion) {
|
ElMessage.success(`当前版本无需安装`);
|
||||||
ElMessage.success(`当前是最新版`);
|
|
||||||
return [false, null, null];
|
return [false, null, null];
|
||||||
} else {
|
} else {
|
||||||
ElMessage.error(`获取版本失败`);
|
ElMessage.error(`获取版本失败`);
|
||||||
@@ -618,23 +798,44 @@
|
|||||||
return [false, null, null];
|
return [false, null, null];
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleUpdateCore = async () => {
|
const handleCoreManagement = async () => {
|
||||||
data.update = true;
|
coreManagementData.visible = true;
|
||||||
await getCoreVersion();
|
await getReleaseList();
|
||||||
const [isNeedUpdate, downloadUrl, latestVersionFileName] = await checkUpdate();
|
};
|
||||||
if (isNeedUpdate) {
|
|
||||||
await reset();
|
const handleInstallCore = async () => {
|
||||||
// console.log(downloadUrl);
|
try {
|
||||||
await invoke("download_easytier_zip", { download_url: downloadUrl, file_name: latestVersionFileName });
|
if (!coreManagementData.data) {
|
||||||
|
return ElMessage.error("请选择一个内核");
|
||||||
|
}
|
||||||
|
data.update = true;
|
||||||
|
await getCoreVersion();
|
||||||
|
const [isNeedUpdate, downloadUrl, latestVersionFileName] = await checkUpdate();
|
||||||
|
|
||||||
|
if (isNeedUpdate) {
|
||||||
|
await reset();
|
||||||
|
// console.error(downloadUrl);
|
||||||
|
await invoke("download_easytier_zip", { download_url: downloadUrl, file_name: latestVersionFileName });
|
||||||
|
}
|
||||||
|
await getCoreVersion();
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
} finally {
|
||||||
|
data.update = false;
|
||||||
}
|
}
|
||||||
await getCoreVersion();
|
|
||||||
data.update = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const getReleaseList = async () => {
|
const getReleaseList = async () => {
|
||||||
const list = await invoke("fetch_easytier_list");
|
coreManagementData.loading = true;
|
||||||
data.releaseList = list as never[];
|
const list = await invoke<string[][][]>("fetch_easytier_list");
|
||||||
console.log(data.releaseList);
|
data.releaseList = [
|
||||||
|
...list.flat().filter(el => {
|
||||||
|
// console.log(el, el[0], el[2]);
|
||||||
|
return el && el[0] && el[2] && !el[2].includes("gui");
|
||||||
|
})
|
||||||
|
];
|
||||||
|
coreManagementData.loading = false;
|
||||||
|
// console.log(data.releaseList);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleAutoStart = async () => {
|
const handleAutoStart = async () => {
|
||||||
@@ -695,7 +896,7 @@
|
|||||||
is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
||||||
config.autoStart = is_enable_by_task;
|
config.autoStart = is_enable_by_task;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
await invoke("spawn_autostart", { enabled: false });
|
await invoke("spawn_autostart", { enabled: false });
|
||||||
const is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
const is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
||||||
config.autoStart = is_enable_by_task;
|
config.autoStart = is_enable_by_task;
|
||||||
@@ -735,8 +936,8 @@
|
|||||||
data.configJsonSeverUrl = guiJson.serverUrl;
|
data.configJsonSeverUrl = guiJson.serverUrl;
|
||||||
mainStore.$patch({
|
mainStore.$patch({
|
||||||
config: {
|
config: {
|
||||||
...guiJson,
|
|
||||||
...mainStore.config,
|
...mainStore.config,
|
||||||
|
...guiJson,
|
||||||
serverUrl: saveServerUrl
|
serverUrl: saveServerUrl
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -744,8 +945,12 @@
|
|||||||
await updateConfigJson(data.configJsonSeverUrl);
|
await updateConfigJson(data.configJsonSeverUrl);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
ElMessage.error(`config.json格式错误`);
|
ElMessage.error(`config.json格式错误`);
|
||||||
|
} finally {
|
||||||
|
mainStore.$patch({
|
||||||
|
createConfigInEasytier: true // 发现本地存在config.json 默认启用该功能
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -783,16 +988,53 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
const getArgs = async () => {
|
const getArgs = async () => {
|
||||||
// console.log(config.proxyNetworks);
|
// console.error(config.proxyNetworks);
|
||||||
const args = [];
|
const args = [];
|
||||||
if (mainStore.configStartEnable && mainStore.configPath) {
|
if (mainStore.configStartEnable) {
|
||||||
// const resourceDir = await getResourceDir();
|
if (mainStore.configPath) {
|
||||||
// const configPath = await join(resourceDir, mainStore.configPath);
|
const isExists = await exists(mainStore.configPath, { baseDir: BaseDirectory.Resource });
|
||||||
// args.push("-c", configPath);
|
if (isExists) {
|
||||||
|
const resourceDir = await getResourceDir();
|
||||||
|
const configPath = await join(resourceDir, mainStore.configPath);
|
||||||
|
args.push("-c", configPath);
|
||||||
|
return args;
|
||||||
|
} else {
|
||||||
|
const appWindow = getCurrentWindow();
|
||||||
|
const isVisible = await appWindow.isVisible();
|
||||||
|
if (!isVisible) {
|
||||||
|
await appWindow.show();
|
||||||
|
await appWindow.setFocus();
|
||||||
|
}
|
||||||
|
mainStore.configPath = "";
|
||||||
|
ElMessage.error(`配置文件不存在 请重新选择`);
|
||||||
|
await handleStartCommand("toml"); // 配置文件不存在,显示配置文件弹窗
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ElMessage.warning(`配置文件不存在 请选择`);
|
||||||
|
await handleStartCommand("toml"); // 配置文件不存在,显示配置文件弹窗
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
args.push("-c", mainStore.configPath);
|
if (mainStore.enableCreateServer) {
|
||||||
|
if (config.relayAllPeerrpc) {
|
||||||
|
args.push("--relay-all-peer-rpc");
|
||||||
|
}
|
||||||
|
const whiteList = mainStore.ServerWhiteList.trim()
|
||||||
|
.split("\n")
|
||||||
|
.map(el => el.trim())
|
||||||
|
.filter(el => el)
|
||||||
|
.join(" ");
|
||||||
|
if (whiteList && mainStore.enableWhiteList) {
|
||||||
|
args.push("--relay-network-whitelist", whiteList);
|
||||||
|
}
|
||||||
|
if (!whiteList && mainStore.enableWhiteList) {
|
||||||
|
args.push("--relay-network-whitelist");
|
||||||
|
}
|
||||||
return args;
|
return args;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.dhcp) {
|
if (config.dhcp) {
|
||||||
args.push("-d");
|
args.push("-d");
|
||||||
}
|
}
|
||||||
@@ -822,7 +1064,7 @@
|
|||||||
args.push("--no-listener");
|
args.push("--no-listener");
|
||||||
}
|
}
|
||||||
if (mainStore.cidrEnable && config.proxyNetworks) {
|
if (mainStore.cidrEnable && config.proxyNetworks) {
|
||||||
// console.log(config.proxyNetworks);
|
// console.error(config.proxyNetworks);
|
||||||
const reg = /\d+\.\d+\.\d+\.\d+\/\d+/g;
|
const reg = /\d+\.\d+\.\d+\.\d+\/\d+/g;
|
||||||
const formatProxyNetworks = config.proxyNetworks
|
const formatProxyNetworks = config.proxyNetworks
|
||||||
.split("\n")
|
.split("\n")
|
||||||
@@ -890,9 +1132,11 @@
|
|||||||
if (data.isStart) {
|
if (data.isStart) {
|
||||||
await reset();
|
await reset();
|
||||||
} else {
|
} else {
|
||||||
|
await setTrayTooltip(tray, "请求联机中...");
|
||||||
const args = await getArgs();
|
const args = await getArgs();
|
||||||
if (!args || args.length <= 0) {
|
if (!args || args.length <= 0) {
|
||||||
return ElMessage.error("无配置");
|
await reset();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (args[0] === "-c") {
|
if (args[0] === "-c") {
|
||||||
ElMessage.warning({
|
ElMessage.warning({
|
||||||
@@ -952,7 +1196,7 @@
|
|||||||
await writeText(WT);
|
await writeText(WT);
|
||||||
ElMessage.success("配置已复制");
|
ElMessage.success("配置已复制");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
ElMessage.error("分享失败");
|
ElMessage.error("分享失败");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -960,14 +1204,32 @@
|
|||||||
importConfigData.data = "";
|
importConfigData.data = "";
|
||||||
importConfigData.visible = true;
|
importConfigData.visible = true;
|
||||||
}
|
}
|
||||||
|
if (command === "create_server") {
|
||||||
|
if (data.isStart) {
|
||||||
|
const [error] = await ElConfirmDanger("切换会停止{action},是否继续?", "提示", {
|
||||||
|
action: "`联机/服务`",
|
||||||
|
confirmButtonText: "继续",
|
||||||
|
cancelButtonText: "取消"
|
||||||
|
});
|
||||||
|
if (!error) await reset();
|
||||||
|
}
|
||||||
|
mainStore.enableCreateServer = !mainStore.enableCreateServer;
|
||||||
|
if (mainStore.config.relayAllPeerrpc && !mainStore.enableCreateServer) {
|
||||||
|
const [error] = await ElConfirmPrimary("是否关闭RPC流量转发?", "提示", {
|
||||||
|
confirmButtonText: "关闭",
|
||||||
|
cancelButtonText: "取消"
|
||||||
|
});
|
||||||
|
if (!error) mainStore.config.relayAllPeerrpc = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleStartImport = async () => {
|
const handleStartImport = async () => {
|
||||||
try {
|
const [err] = await ElConfirmPrimary("确定导入?", "提示", {
|
||||||
await ElMessageBox.confirm("确定导入?", "提示", {
|
confirmButtonText: "确定",
|
||||||
confirmButtonText: "确定",
|
cancelButtonText: "取消"
|
||||||
cancelButtonText: "取消"
|
});
|
||||||
});
|
if (!err) {
|
||||||
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
||||||
mainStore.$patch({
|
mainStore.$patch({
|
||||||
config: {
|
config: {
|
||||||
@@ -978,8 +1240,8 @@
|
|||||||
ElMessage.success("导入成功");
|
ElMessage.success("导入成功");
|
||||||
importConfigData.visible = false;
|
importConfigData.visible = false;
|
||||||
mainStore.basePeers = uniq([config.serverUrl, ...mainStore.basePeers]);
|
mainStore.basePeers = uniq([config.serverUrl, ...mainStore.basePeers]);
|
||||||
} catch (err) {
|
} else {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
if (err !== "cancel") {
|
if (err !== "cancel") {
|
||||||
ElMessage.error("导入失败");
|
ElMessage.error("导入失败");
|
||||||
}
|
}
|
||||||
@@ -995,7 +1257,7 @@
|
|||||||
try {
|
try {
|
||||||
await mkdir(path, { baseDir: BaseDirectory.Resource });
|
await mkdir(path, { baseDir: BaseDirectory.Resource });
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -1003,7 +1265,7 @@
|
|||||||
const openConfigDir = async () => {
|
const openConfigDir = async () => {
|
||||||
const resourceDir = await getResourceDir();
|
const resourceDir = await getResourceDir();
|
||||||
const configPath = await join(resourceDir, import.meta.env.VITE_CONFIG_PATH);
|
const configPath = await join(resourceDir, import.meta.env.VITE_CONFIG_PATH);
|
||||||
// console.log(configPath);
|
// console.error(configPath);
|
||||||
await Command.create("explorer", [configPath]).execute();
|
await Command.create("explorer", [configPath]).execute();
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1047,7 +1309,7 @@
|
|||||||
logsTimer && clearInterval(logsTimer);
|
logsTimer && clearInterval(logsTimer);
|
||||||
logsTimer = setInterval(() => {
|
logsTimer = setInterval(() => {
|
||||||
appWindow.emitTo("log", "logs", data.log);
|
appWindow.emitTo("log", "logs", data.log);
|
||||||
}, 600);
|
}, 650);
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
data.logVisible = false;
|
data.logVisible = false;
|
||||||
|
|||||||
+29
-11
@@ -63,9 +63,15 @@
|
|||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
|
width="120"
|
||||||
prop="version"
|
prop="version"
|
||||||
label="版本"
|
label="版本"
|
||||||
></ElTableColumn>
|
></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="tunnel_proto"
|
||||||
|
label="隧道协议"
|
||||||
|
></ElTableColumn>
|
||||||
</ElTable>
|
</ElTable>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -74,22 +80,33 @@
|
|||||||
import { invoke } from "@tauri-apps/api/core";
|
import { invoke } from "@tauri-apps/api/core";
|
||||||
import { reactive, onMounted, onBeforeUnmount } from "vue";
|
import { reactive, onMounted, onBeforeUnmount } from "vue";
|
||||||
import { parsePeerInfo } from "@/utils";
|
import { parsePeerInfo } from "@/utils";
|
||||||
|
// enum NatType {
|
||||||
|
// // has NAT; but own a single public IP, port is not changed
|
||||||
|
// Unknown = 0;
|
||||||
|
// OpenInternet = 1;
|
||||||
|
// NoPAT = 2;
|
||||||
|
// FullCone = 3;
|
||||||
|
// Restricted = 4;
|
||||||
|
// PortRestricted = 5;
|
||||||
|
// Symmetric = 6;
|
||||||
|
// SymUdpFirewall = 7;
|
||||||
|
// SymmetricEasyInc = 8;
|
||||||
|
// SymmetricEasyDec = 9;
|
||||||
|
// }
|
||||||
const natMaps = {
|
const natMaps = {
|
||||||
unknown: "未知",
|
unknown: "未知",
|
||||||
nopat: "nat0",
|
OpenInternet: "nat0-openinternet",
|
||||||
|
nopat: "nat0-nopat",
|
||||||
fullcone: "nat1",
|
fullcone: "nat1",
|
||||||
restricted: "nat2",
|
restricted: "nat2",
|
||||||
addressrestricted: "nat2",
|
|
||||||
portrestricted: "nat3",
|
portrestricted: "nat3",
|
||||||
symmetric: "nat4"
|
symmetric: "nat4",
|
||||||
|
symmetriceasydec: "nat4-easydec",
|
||||||
|
symmetriceasyinc: "nat4-easyinc",
|
||||||
|
symUdpfirewall: "nat4-udpfirewall"
|
||||||
};
|
};
|
||||||
type natKyes = keyof typeof natMaps;
|
type natKyes = keyof typeof natMaps;
|
||||||
// NAT1: Full Cone NAT,全锥形NAT,这是最宽松的网络环境,你想做什么,基本没啥限制IP和端口都不受限。
|
|
||||||
// NAT2: Address-Restricted Cone NAT,受限锥型NAT,相比NAT1,NAT2 增加了地址限制,也就是IP受限,而端口不受限。
|
|
||||||
// NAT3: Port-Restricted Cone NAT,端口受限锥型,相比NAT2,NAT3 又增加了端口限制,也就是说IP、端口都受限。
|
|
||||||
// NAT4: Symmetric NAT,对称型NAT,对称型NAT具有端口受限锥型的受限特性,内部地址每一次请求一个特定的外部地址,
|
|
||||||
// 都可能会绑定到一个新的端口号。也就是请求不同的外部地址映射的端口号是可能不同的。这种类型基本上就告别 P2P 了。
|
|
||||||
const data = reactive<{ member: any[] }>({
|
const data = reactive<{ member: any[] }>({
|
||||||
member: []
|
member: []
|
||||||
});
|
});
|
||||||
@@ -101,7 +118,8 @@
|
|||||||
["lat_ms", "延迟/ms"],
|
["lat_ms", "延迟/ms"],
|
||||||
["loss_rate", "丢包率"],
|
["loss_rate", "丢包率"],
|
||||||
["nat_type", "NAT类型"],
|
["nat_type", "NAT类型"],
|
||||||
["version", "版本"]
|
["version", "版本"],
|
||||||
|
["tunnel_proto", "隧道协议"]
|
||||||
];
|
];
|
||||||
|
|
||||||
const listenOutput = async () => {
|
const listenOutput = async () => {
|
||||||
@@ -115,7 +133,7 @@
|
|||||||
value.ipv4 = value.ipv4.split("/")[0];
|
value.ipv4 = value.ipv4.split("/")[0];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// console.log(peerInfo);
|
// console.error(peerInfo);
|
||||||
data.member = peerInfo;
|
data.member = peerInfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+5
-5
@@ -226,7 +226,7 @@
|
|||||||
ElMessage.success("设置成功");
|
ElMessage.success("设置成功");
|
||||||
await initNetCardInfo();
|
await initNetCardInfo();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -260,7 +260,7 @@
|
|||||||
data.pingLog += '完毕'
|
data.pingLog += '完毕'
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error("Ping发生错误");
|
ElMessage.error("Ping发生错误");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
data.isPing = false;
|
data.isPing = false;
|
||||||
}
|
}
|
||||||
@@ -291,7 +291,7 @@
|
|||||||
}) as any;
|
}) as any;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error("网卡获取失败");
|
ElMessage.error("网卡获取失败");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -324,13 +324,13 @@
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
// netsh advfirewall firewall add rule name="EXE名称" dir=out action=allow program="EXE绝对路径"
|
// netsh advfirewall firewall add rule name="EXE名称" dir=out action=allow program="EXE绝对路径"
|
||||||
ElMessage.error("获取防火墙状态失败");
|
ElMessage.error("获取防火墙状态失败");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const appWindow = getCurrentWindow();
|
const appWindow = getCurrentWindow();
|
||||||
mainStore.$subscribe((...a) => {
|
mainStore.$subscribe((...a) => {
|
||||||
// console.log("subscribe", a);
|
// console.error("subscribe", a);
|
||||||
appWindow.emitTo("main", "config", { winIpBcAutoStart: mainStore.winIpBcAutoStart, config: { ...mainStore.config } });
|
appWindow.emitTo("main", "config", { winIpBcAutoStart: mainStore.winIpBcAutoStart, config: { ...mainStore.config } });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Generated
+498
-157
File diff suppressed because it is too large
Load Diff
Generated
+1
-1
@@ -1176,7 +1176,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.2.1"
|
version = "1.2.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"planif",
|
"planif",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.2.1"
|
version = "1.2.6"
|
||||||
homepage = "https://github.com/EasyTier/EasyTier"
|
homepage = "https://github.com/EasyTier/EasyTier"
|
||||||
repository = "https://github.com/EasyTier/EasytierGame"
|
repository = "https://github.com/EasyTier/EasytierGame"
|
||||||
description = "A simple network initiator based on Easytier"
|
description = "A simple network initiator based on Easytier"
|
||||||
|
|||||||
@@ -15,6 +15,8 @@
|
|||||||
"core:window:allow-minimize",
|
"core:window:allow-minimize",
|
||||||
"core:window:allow-hide",
|
"core:window:allow-hide",
|
||||||
"core:window:allow-close",
|
"core:window:allow-close",
|
||||||
|
"core:window:allow-set-focus",
|
||||||
|
"core:window:allow-is-visible",
|
||||||
"shell:allow-open",
|
"shell:allow-open",
|
||||||
"core:window:allow-show",
|
"core:window:allow-show",
|
||||||
"core:window:allow-create",
|
"core:window:allow-create",
|
||||||
@@ -92,6 +94,9 @@
|
|||||||
|
|
||||||
"window-state:default",
|
"window-state:default",
|
||||||
"window-state:allow-save-window-state",
|
"window-state:allow-save-window-state",
|
||||||
"window-state:allow-restore-state"
|
"window-state:allow-restore-state",
|
||||||
|
|
||||||
|
"log:default",
|
||||||
|
"log:allow-log"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
@echo off
|
||||||
|
chcp 65001 >nul
|
||||||
|
setlocal
|
||||||
|
|
||||||
|
REM 检查是否具有管理员权限
|
||||||
|
openfiles >nul 2>&1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo 当前没有管理员权限,鼠标右键clear_data.bat,选择使用管理员模式运行...
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
REM 获取当前用户的 Local 目录路径
|
||||||
|
set "local_dir=%LOCALAPPDATA%"
|
||||||
|
|
||||||
|
REM 设置要删除的任务计划程序文件夹名称
|
||||||
|
set "folder_name=\easytierGame"
|
||||||
|
set "task_name=auto start"
|
||||||
|
|
||||||
|
REM 设置要删除的目标文件夹
|
||||||
|
set "target_data_dir=%local_dir%\com.tauri.easytier-game"
|
||||||
|
echo ---
|
||||||
|
REM 打印 Local 目录路径
|
||||||
|
echo 当前数据目录: %target_data_dir%
|
||||||
|
echo ---
|
||||||
|
echo 您确定要清除EasytierGame的本地数据吗? (y/n)
|
||||||
|
echo ---
|
||||||
|
|
||||||
|
REM 等待用户输入
|
||||||
|
set /p confirm=输入'y/n'进行确认:
|
||||||
|
|
||||||
|
if /i "%confirm%"=="y" (
|
||||||
|
echo 清除数据中,请稍后...
|
||||||
|
echo ---
|
||||||
|
@REM REM 删除任务计划程序文件夹
|
||||||
|
echo delete auto_start task ...
|
||||||
|
echo ---
|
||||||
|
|
||||||
|
echo ---
|
||||||
|
schtasks /delete /tn "%folder_name%\%task_name%" /f
|
||||||
|
schtasks /delete /tn "%folder_name%" /f
|
||||||
|
echo ---
|
||||||
|
echo 开始清除本地缓存数据,没有使用开机自启上面就会报错,不影响数据清理...
|
||||||
|
|
||||||
|
if exist "%target_data_dir%" (
|
||||||
|
REM 删除目标文件夹及其内容
|
||||||
|
rd /s /q "%target_data_dir%"
|
||||||
|
)
|
||||||
|
echo 清除本地缓存数据完毕.
|
||||||
|
echo ---
|
||||||
|
echo 您可以手动删除EasytierGame目录下所有文件,即可完成卸载.
|
||||||
|
) else (
|
||||||
|
echo 取消清理数据
|
||||||
|
)
|
||||||
|
|
||||||
|
pause
|
||||||
|
endlocal
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
# 实例名称,用于在同一台机器上标识此节点
|
||||||
|
instance_name = ""
|
||||||
|
# 主机名,用于标识此设备的主机名
|
||||||
|
hostname = ""
|
||||||
|
# 实例 ID,一般为 UUID,在同一个虚拟网络中唯一
|
||||||
|
instance_id = ""
|
||||||
|
# 此节点的虚拟网 IPv4 地址,如果为空,则此节点将仅转发数据包,不会创建 TUN 设备
|
||||||
|
ipv4 = ""
|
||||||
|
# 由 Easytier 自动确定并设置IP地址,默认从10.0.0.1开始。警告:在使用 DHCP 时,如果网络中出现 IP 冲突,IP 将自动更改
|
||||||
|
dhcp = false
|
||||||
|
|
||||||
|
# 监听器列表,用于接受连接
|
||||||
|
listeners = [
|
||||||
|
"tcp://0.0.0.0:11010",
|
||||||
|
"udp://0.0.0.0:11010",
|
||||||
|
"wg://0.0.0.0:11011",
|
||||||
|
"ws://0.0.0.0:11011/",
|
||||||
|
"wss://0.0.0.0:11012/",
|
||||||
|
]
|
||||||
|
|
||||||
|
# 退出节点列表
|
||||||
|
exit_nodes = [
|
||||||
|
]
|
||||||
|
|
||||||
|
# 用于管理的 RPC 门户地址
|
||||||
|
rpc_portal = "127.0.0.1:15888"
|
||||||
|
|
||||||
|
[network_identity]
|
||||||
|
# 网络名称,用于标识虚拟网络
|
||||||
|
network_name = ""
|
||||||
|
# 网络密钥,用于验证此节点属于虚拟网络
|
||||||
|
network_secret = ""
|
||||||
|
|
||||||
|
# 这里是对等连接节点配置,可以多段配置
|
||||||
|
[[peer]]
|
||||||
|
uri = "tcp://public.easytier.top:11010"
|
||||||
|
|
||||||
|
[[peer]]
|
||||||
|
uri = "udp://public.easytier.top:11010"
|
||||||
|
|
||||||
|
# 这里是子网代理节点配置,可以有多段配置
|
||||||
|
[[proxy_network]]
|
||||||
|
cidr = "10.0.1.0/24"
|
||||||
|
|
||||||
|
[[proxy_network]]
|
||||||
|
cidr = "10.0.2.0/24"
|
||||||
|
|
||||||
|
# WireGuard 配置信息
|
||||||
|
[vpn_portal_config]
|
||||||
|
# WireGuard 客户端所在的网段,下面为示例
|
||||||
|
client_cidr = "10.14.14.0/24"
|
||||||
|
#wg所监听的端口(请勿和listeners的wg冲突)
|
||||||
|
wireguard_listen = "0.0.0.0:11012"
|
||||||
|
|
||||||
|
[flags]
|
||||||
|
# 连接到对等节点使用的默认协议
|
||||||
|
default_protocol = "tcp"
|
||||||
|
# TUN 设备名称,如果为空,则使用默认名称
|
||||||
|
dev_name = ""
|
||||||
|
# 禁用p2p
|
||||||
|
disable_p2p = false
|
||||||
|
# 是否启用加密
|
||||||
|
enable_encryption = true
|
||||||
|
# 是否启用 IPv6 支持
|
||||||
|
enable_ipv6 = true
|
||||||
|
# TUN 设备的 MTU
|
||||||
|
mtu = 1380
|
||||||
|
# 延迟优先模式,将尝试使用最低延迟路径转发流量,默认使用最短路径
|
||||||
|
latency_first = false
|
||||||
|
# 将本节点配置为退出节点
|
||||||
|
enable_exit_node = false
|
||||||
|
# 禁用 TUN 设备
|
||||||
|
no_tun = false
|
||||||
|
# 为子网代理启用 smoltcp 堆栈
|
||||||
|
use_smoltcp = false
|
||||||
|
# 仅转发白名单网络的流量,支持通配符字符串。多个网络名称间可以使用英文空格间隔。如果该参数为空,则禁用转发。默认允许所有网络。例如:'*'(所有网络),'def*'(以def为前缀的网络),'net1 net2'(只允许net1和net2)
|
||||||
|
foreign_network_whitelist = "*"
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
hostname = "Test1"
|
|
||||||
instance_name = "default"
|
|
||||||
instance_id = "8803362c-e4f1-4df1-93e8-721653945f77"
|
|
||||||
dhcp = true
|
|
||||||
listeners = [
|
|
||||||
"tcp://0.0.0.0:11010",
|
|
||||||
"udp://0.0.0.0:11010",
|
|
||||||
"wg://0.0.0.0:11011",
|
|
||||||
"ws://0.0.0.0:11011/",
|
|
||||||
"wss://0.0.0.0:11012/",
|
|
||||||
]
|
|
||||||
exit_nodes = []
|
|
||||||
rpc_portal = "0.0.0.0:15888"
|
|
||||||
|
|
||||||
[network_identity]
|
|
||||||
network_name = "default"
|
|
||||||
network_secret = ""
|
|
||||||
|
|
||||||
[[peer]]
|
|
||||||
uri = "tcp://public.easytier.top:11010"
|
|
||||||
|
|
||||||
[[peer]]
|
|
||||||
uri = "udp://public.easytier.top:11010"
|
|
||||||
Binary file not shown.
+23
-12
@@ -70,7 +70,10 @@ fn get_core_version() -> String {
|
|||||||
let output_str = String::from_utf8_lossy(&output.stdout);
|
let output_str = String::from_utf8_lossy(&output.stdout);
|
||||||
return output_str.trim().to_string();
|
return output_str.trim().to_string();
|
||||||
}
|
}
|
||||||
Err(_e) => return "".to_string(),
|
Err(_e) => {
|
||||||
|
log::error!("{}", _e.to_string());
|
||||||
|
return "".to_string();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -176,7 +179,7 @@ async fn download_easytier_zip(download_url: String, file_name: String) {
|
|||||||
unzip(path);
|
unzip(path);
|
||||||
match fs::remove_file(path) {
|
match fs::remove_file(path) {
|
||||||
Ok(_) => println!("删除zip文件成功"),
|
Ok(_) => println!("删除zip文件成功"),
|
||||||
Err(_) => println!("删除zip文件失败"),
|
Err(_) => log::error!("删除zip文件失败"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -263,7 +266,7 @@ fn run_command(
|
|||||||
tx.send(line).expect("failed to send line");
|
tx.send(line).expect("failed to send line");
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("error reading line: {}", e);
|
log::error!("error reading line: {}", e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -392,7 +395,7 @@ fn spawn_autostart(enabled: bool) {
|
|||||||
let _ = tx.send(true);
|
let _ = tx.send(true);
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("Error: {}", e);
|
log::error!("Error: {}", e);
|
||||||
let _ = tx.send(false);
|
let _ = tx.send(false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -444,7 +447,7 @@ fn autostart_is_enabled() -> bool {
|
|||||||
return enabled;
|
return enabled;
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("autostart enabled: false -> {}", e);
|
log::error!("autostart enabled: false -> {}", e);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -545,13 +548,21 @@ pub fn run() {
|
|||||||
}))
|
}))
|
||||||
.setup(move |app| {
|
.setup(move |app| {
|
||||||
let args = args.clone();
|
let args = args.clone();
|
||||||
if cfg!(debug_assertions) {
|
// if cfg!(debug_assertions) {
|
||||||
app.handle().plugin(
|
let log_path = get_tool_exe_path(String::from("\\easytier\\guiLogs"));
|
||||||
tauri_plugin_log::Builder::default()
|
app.handle().plugin(
|
||||||
.level(log::LevelFilter::Info)
|
tauri_plugin_log::Builder::default()
|
||||||
.build(),
|
.target(tauri_plugin_log::Target::new(
|
||||||
)?;
|
tauri_plugin_log::TargetKind::Folder {
|
||||||
}
|
path: std::path::PathBuf::from(log_path),
|
||||||
|
file_name: None,
|
||||||
|
},
|
||||||
|
))
|
||||||
|
.max_file_size(50_000 /* bytes */)
|
||||||
|
.level(log::LevelFilter::Error)
|
||||||
|
.build(),
|
||||||
|
)?;
|
||||||
|
// }
|
||||||
#[cfg(not(target_os = "android"))]
|
#[cfg(not(target_os = "android"))]
|
||||||
let _tray_menu = TrayIconBuilder::with_id("main")
|
let _tray_menu = TrayIconBuilder::with_id("main")
|
||||||
.menu_on_left_click(false)
|
.menu_on_left_click(false)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
||||||
"productName": "easytier-game",
|
"productName": "easytier-game",
|
||||||
"version": "1.2.1",
|
"version": "1.2.6",
|
||||||
"identifier": "com.tauri.easytier-game",
|
"identifier": "com.tauri.easytier-game",
|
||||||
|
|
||||||
"build": {
|
"build": {
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "easytier-game 1.2.1",
|
"title": "easytier-game 1.2.6",
|
||||||
"label": "main",
|
"label": "main",
|
||||||
"minWidth": 340,
|
"minWidth": 340,
|
||||||
"width": 340,
|
"width": 340,
|
||||||
@@ -43,10 +43,13 @@
|
|||||||
"easytier/icons/",
|
"easytier/icons/",
|
||||||
"easytier/config_template.json",
|
"easytier/config_template.json",
|
||||||
"easytier/tool/WinIPBroadcast.exe",
|
"easytier/tool/WinIPBroadcast.exe",
|
||||||
|
"easytier/tool/MicrosoftEdgeWebview2Setup.exe",
|
||||||
"easytier/easytier-cli.exe",
|
"easytier/easytier-cli.exe",
|
||||||
"easytier/easytier-core.exe",
|
"easytier/easytier-core.exe",
|
||||||
"easytier/Packet.dll",
|
"easytier/Packet.dll",
|
||||||
"easytier/wintun.dll"
|
"easytier/wintun.dll",
|
||||||
|
"easytier/clear_local_data.bat",
|
||||||
|
"帮助.txt"
|
||||||
],
|
],
|
||||||
"windows": {
|
"windows": {
|
||||||
"webviewInstallMode": {
|
"webviewInstallMode": {
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
[如果界面无法打开]
|
||||||
|
|
||||||
|
1. 如果您已经启动easytier-game.exe,那它可能会在后台运行,打开任务管理器关闭easytier-game.exe
|
||||||
|
|
||||||
|
2. 使用easytier-game安装目录下的 easytier/tool/MicrosoftEdgeWebview2Setup.exe 安装webview2
|
||||||
|
|
||||||
|
3. 再次启用easytier-game.exe
|
||||||
|
|
||||||
|
|
||||||
|
[如果想彻底删除easytierGame]
|
||||||
|
|
||||||
|
1. 关闭easytierGame
|
||||||
|
|
||||||
|
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
|
||||||
|
|
||||||
|
3. 删除easytierGame文件夹
|
||||||
+11
-2
@@ -14,7 +14,7 @@ export default defineStore("main", {
|
|||||||
connectAfterStart: false, //软件打开后,是否自动连接
|
connectAfterStart: false, //软件打开后,是否自动连接
|
||||||
disableIpv6: false, // 是否禁用IPv6
|
disableIpv6: false, // 是否禁用IPv6
|
||||||
disbleListenner: false, // 是否禁用监听
|
disbleListenner: false, // 是否禁用监听
|
||||||
disableEncryption: false, // 是否禁用加密
|
disableEncryption: true, // 是否禁用加密
|
||||||
multiThread: false, //使用多线程
|
multiThread: false, //使用多线程
|
||||||
enablExitNode: false, // 是否启用退出节点
|
enablExitNode: false, // 是否启用退出节点
|
||||||
noTun: false, // 是否使用TUN
|
noTun: false, // 是否使用TUN
|
||||||
@@ -38,6 +38,10 @@ export default defineStore("main", {
|
|||||||
configPath: "", //配置文件路径
|
configPath: "", //配置文件路径
|
||||||
winIpBcAutoStart: true,
|
winIpBcAutoStart: true,
|
||||||
createConfigInEasytier: false, //在easytier目录生成config.json文件吗
|
createConfigInEasytier: false, //在easytier目录生成config.json文件吗
|
||||||
|
githubFastUrl: "https://ghproxy.cc/",
|
||||||
|
enableCreateServer: false, // 自建服务器
|
||||||
|
enableWhiteList: true, // 是否启用白名单
|
||||||
|
ServerWhiteList: "", // 服务器流量转发白名单
|
||||||
|
|
||||||
winipBcPid: 0,
|
winipBcPid: 0,
|
||||||
winipBcStart: false
|
winipBcStart: false
|
||||||
@@ -80,7 +84,12 @@ export default defineStore("main", {
|
|||||||
"configStartEnable",
|
"configStartEnable",
|
||||||
"configPath",
|
"configPath",
|
||||||
"winIpBcAutoStart",
|
"winIpBcAutoStart",
|
||||||
"createConfigInEasytier"
|
"createConfigInEasytier",
|
||||||
|
"githubFastUrl",
|
||||||
|
|
||||||
|
"enableCreateServer",
|
||||||
|
"enableWhiteList",
|
||||||
|
"ServerWhiteList"
|
||||||
],
|
],
|
||||||
// // 除了这些,其他都要存下来
|
// // 除了这些,其他都要存下来
|
||||||
// omit: ["winipBcPid", "winipBcStart"]
|
// omit: ["winipBcPid", "winipBcStart"]
|
||||||
|
|||||||
+9
-5
@@ -1,6 +1,6 @@
|
|||||||
|
import { open } from "@tauri-apps/plugin-shell";
|
||||||
export const ENV = import.meta.env;
|
export const ENV = import.meta.env;
|
||||||
|
|
||||||
|
|
||||||
//防抖
|
//防抖
|
||||||
export const bounce = (time = 3000) => {
|
export const bounce = (time = 3000) => {
|
||||||
let bounceTimer: NodeJS.Timeout | null = null;
|
let bounceTimer: NodeJS.Timeout | null = null;
|
||||||
@@ -50,8 +50,8 @@ export const numRemoveZero = (num: Number) => {
|
|||||||
// await-to-js
|
// await-to-js
|
||||||
export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefined) => {
|
export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefined) => {
|
||||||
return promise
|
return promise
|
||||||
.then(data => [null, data])
|
.then((data) => [null, data])
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
if (errorExt) {
|
if (errorExt) {
|
||||||
if (typeof errorExt !== "object") {
|
if (typeof errorExt !== "object") {
|
||||||
return [errorExt, undefined];
|
return [errorExt, undefined];
|
||||||
@@ -72,7 +72,7 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
const headers = lines[1]
|
const headers = lines[1]
|
||||||
.split("│")
|
.split("│")
|
||||||
.slice(1, -1)
|
.slice(1, -1)
|
||||||
.map(h => h.trim());
|
.map((h) => h.trim());
|
||||||
|
|
||||||
// 初始化结果数组
|
// 初始化结果数组
|
||||||
const result: any[] = [];
|
const result: any[] = [];
|
||||||
@@ -85,7 +85,7 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
const values = lines[i]
|
const values = lines[i]
|
||||||
.split("│")
|
.split("│")
|
||||||
.slice(1, -1)
|
.slice(1, -1)
|
||||||
.map(v => v.trim());
|
.map((v) => v.trim());
|
||||||
|
|
||||||
// 创建对象并添加到结果数组
|
// 创建对象并添加到结果数组
|
||||||
const obj: any = {};
|
const obj: any = {};
|
||||||
@@ -100,6 +100,10 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const addQQGroup = () => {
|
||||||
|
open("https://qm.qq.com/q/Yo3HmaEIWC");
|
||||||
|
};
|
||||||
|
|
||||||
export function isValidIP(ip: string) {
|
export function isValidIP(ip: string) {
|
||||||
const ipv4Pattern =
|
const ipv4Pattern =
|
||||||
/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
|
/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
/**
|
||||||
|
* 生成 release 发布包 zip 文件
|
||||||
|
*/
|
||||||
|
|
||||||
|
const releaseDir = "./src-tauri/target/release";
|
||||||
|
const releaseDirEasytier = `${releaseDir}/easytier/`;
|
||||||
|
const releaseExe = `${releaseDir}/easytier-game.exe`;
|
||||||
|
const releaseHelp = `${releaseDir}/帮助.txt`;
|
||||||
|
const deleteEasytierFiles = ["logs/", "guiLogs/"];
|
||||||
|
const pkg = require("./package.json");
|
||||||
|
const fileName = `easytier-game_windows_x86_64_${pkg.version}.zip`; // 发布包格式
|
||||||
|
const releaseZipDir = "./release";
|
||||||
|
const releaseZip = `${releaseZipDir}/${fileName}`;
|
||||||
|
|
||||||
|
const fs = require("fs");
|
||||||
|
const path = require("path");
|
||||||
|
const archiver = require("archiver");
|
||||||
|
|
||||||
|
const output = fs.createWriteStream(path.join(__dirname, releaseZip));
|
||||||
|
const archive = archiver("zip", {
|
||||||
|
zlib: { level: 8 } // Sets the compression level.
|
||||||
|
});
|
||||||
|
|
||||||
|
// listen for all archive data to be written
|
||||||
|
// 'close' event is fired only when a file descriptor is involved
|
||||||
|
output.on("close", function () {
|
||||||
|
console.log(archive.pointer() + " total bytes");
|
||||||
|
console.log(`archiver has been finalized and the output ${releaseZip}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
// This event is fired when the data source is drained no matter what was the data source.
|
||||||
|
// It is not part of this library but rather from the NodeJS Stream API.
|
||||||
|
// @see: https://nodejs.org/api/stream.html#stream_event_end
|
||||||
|
output.on("end", function () {
|
||||||
|
console.log("Data has been drained");
|
||||||
|
});
|
||||||
|
|
||||||
|
// good practice to catch warnings (ie stat failures and other non-blocking errors)
|
||||||
|
archive.on("warning", function (err) {
|
||||||
|
if (err.code === "ENOENT") {
|
||||||
|
// log warning
|
||||||
|
} else {
|
||||||
|
// throw error
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
archive.on("error", function (err) {
|
||||||
|
throw err;
|
||||||
|
});
|
||||||
|
|
||||||
|
for (const f of deleteEasytierFiles) {
|
||||||
|
fs.rmSync(path.join(__dirname, releaseDirEasytier + f), { recursive: true, force: true });
|
||||||
|
}
|
||||||
|
const r = path.join(__dirname, releaseZipDir);
|
||||||
|
if (!fs.existsSync(r)) {
|
||||||
|
fs.mkdirSync(r);
|
||||||
|
}
|
||||||
|
|
||||||
|
// pipe archive data to the file
|
||||||
|
archive.pipe(output);
|
||||||
|
archive
|
||||||
|
.append(fs.createReadStream(path.join(__dirname, releaseExe)), { name: "easytier-game.exe" })
|
||||||
|
.append(fs.createReadStream(path.join(__dirname, releaseHelp)), { name: "帮助.txt" })
|
||||||
|
.directory(path.join(__dirname, releaseDirEasytier), "easytier")
|
||||||
|
.finalize();
|
||||||
Reference in New Issue
Block a user