mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
76bdec0e1d | ||
|
|
997f3798ae |
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
"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.3.2",
|
"version": "1.3.3",
|
||||||
"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",
|
||||||
|
|||||||
+3
-3
@@ -86,7 +86,7 @@
|
|||||||
:disabled="mainStore.config.disbleListenner"
|
:disabled="mainStore.config.disbleListenner"
|
||||||
v-model="mainStore.config.enableCustomListener"
|
v-model="mainStore.config.enableCustomListener"
|
||||||
>
|
>
|
||||||
自定义IPV4监听地址
|
自定义监听地址
|
||||||
</ElCheckbox>
|
</ElCheckbox>
|
||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
@@ -188,7 +188,7 @@
|
|||||||
<div><ElCheckbox v-model="mainStore.config.multiThread">启用多线程运行</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.multiThread">启用多线程运行</ElCheckbox></div>
|
||||||
<div class="flex items-center gap-[10px]">
|
<div class="flex items-center gap-[10px]">
|
||||||
<ElText>压缩算法</ElText>
|
<ElText>压缩算法</ElText>
|
||||||
<div class="w-[90px]">
|
<div class="w-[160px]">
|
||||||
<ElSelect
|
<ElSelect
|
||||||
size="small"
|
size="small"
|
||||||
v-model="mainStore.config.compression"
|
v-model="mainStore.config.compression"
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
>
|
>
|
||||||
<ElOption
|
<ElOption
|
||||||
v-for="item in [
|
v-for="item in [
|
||||||
['none', '默认'],
|
['none', '不压缩(游戏联机推荐)'],
|
||||||
['zstd', 'zstd算法']
|
['zstd', 'zstd算法']
|
||||||
]"
|
]"
|
||||||
:key="item[0]"
|
:key="item[0]"
|
||||||
|
|||||||
@@ -1183,6 +1183,9 @@
|
|||||||
if (config.devName && config.devNameValue) {
|
if (config.devName && config.devNameValue) {
|
||||||
args.push("--dev-name", config.devNameValue);
|
args.push("--dev-name", config.devNameValue);
|
||||||
}
|
}
|
||||||
|
if(config.compression && config.compression != 'none') {
|
||||||
|
args.push("--compression", config.compression);
|
||||||
|
}
|
||||||
return args;
|
return args;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -39,7 +39,7 @@
|
|||||||
effect="dark"
|
effect="dark"
|
||||||
:type="row.cost == 'p2p' ? 'success' : 'info'"
|
:type="row.cost == 'p2p' ? 'success' : 'info'"
|
||||||
>
|
>
|
||||||
{{ row.cost }}
|
{{ row.cost ? row.cost.replace("relay", "中转") : row.cost }}
|
||||||
</ElTag>
|
</ElTag>
|
||||||
</template>
|
</template>
|
||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
|
|||||||
Generated
+1
-1
@@ -1227,7 +1227,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.3.2"
|
version = "1.3.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"planif",
|
"planif",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.3.2"
|
version = "1.3.3"
|
||||||
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"
|
||||||
|
|||||||
@@ -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.3.2",
|
"version": "1.3.3",
|
||||||
"identifier": "com.tauri.easytier-game",
|
"identifier": "com.tauri.easytier-game",
|
||||||
|
|
||||||
"build": {
|
"build": {
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "easytier-game 1.3.2",
|
"title": "easytier-game 1.3.3",
|
||||||
"label": "main",
|
"label": "main",
|
||||||
"minWidth": 340,
|
"minWidth": 340,
|
||||||
"width": 340,
|
"width": 340,
|
||||||
|
|||||||
+1
-1
@@ -98,7 +98,7 @@ const store = defineStore("main", {
|
|||||||
"config.enableCustomListenerV6",
|
"config.enableCustomListenerV6",
|
||||||
"config.customListenerV6Data",
|
"config.customListenerV6Data",
|
||||||
|
|
||||||
"config.enableCustonProtocol",
|
"config.enableCustomProtocol",
|
||||||
"config.customProtocol",
|
"config.customProtocol",
|
||||||
"config.enablePreventSleep",
|
"config.enablePreventSleep",
|
||||||
"config.compression",
|
"config.compression",
|
||||||
|
|||||||
Reference in New Issue
Block a user