Compare commits

..
2 Commits
8 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"private": true,
"author": "leizi97",
"description": "A simple network initiator based on Easytier",
"version": "1.3.2",
"version": "1.3.3",
"scripts": {
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
"build": "nuxt generate --dotenv env/.env.prod",
+3 -3
View File
@@ -86,7 +86,7 @@
:disabled="mainStore.config.disbleListenner"
v-model="mainStore.config.enableCustomListener"
>
自定义IPV4监听地址
自定义监听地址
</ElCheckbox>
<ElButton
size="small"
@@ -188,7 +188,7 @@
<div><ElCheckbox v-model="mainStore.config.multiThread">启用多线程运行</ElCheckbox></div>
<div class="flex items-center gap-[10px]">
<ElText>压缩算法</ElText>
<div class="w-[90px]">
<div class="w-[160px]">
<ElSelect
size="small"
v-model="mainStore.config.compression"
@@ -196,7 +196,7 @@
>
<ElOption
v-for="item in [
['none', '默认'],
['none', '不压缩(游戏联机推荐)'],
['zstd', 'zstd算法']
]"
:key="item[0]"
+3
View File
@@ -1183,6 +1183,9 @@
if (config.devName && config.devNameValue) {
args.push("--dev-name", config.devNameValue);
}
if(config.compression && config.compression != 'none') {
args.push("--compression", config.compression);
}
return args;
};
+1 -1
View File
@@ -39,7 +39,7 @@
effect="dark"
:type="row.cost == 'p2p' ? 'success' : 'info'"
>
{{ row.cost }}
{{ row.cost ? row.cost.replace("relay", "中转") : row.cost }}
</ElTag>
</template>
</ElTableColumn>
+1 -1
View File
@@ -1227,7 +1227,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
[[package]]
name = "easytier-game"
version = "1.3.2"
version = "1.3.3"
dependencies = [
"log",
"planif",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "easytier-game"
version = "1.3.2"
version = "1.3.3"
homepage = "https://github.com/EasyTier/EasyTier"
repository = "https://github.com/EasyTier/EasytierGame"
description = "A simple network initiator based on Easytier"
+2 -2
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "easytier-game",
"version": "1.3.2",
"version": "1.3.3",
"identifier": "com.tauri.easytier-game",
"build": {
@@ -13,7 +13,7 @@
"app": {
"windows": [
{
"title": "easytier-game 1.3.2",
"title": "easytier-game 1.3.3",
"label": "main",
"minWidth": 340,
"width": 340,
+1 -1
View File
@@ -98,7 +98,7 @@ const store = defineStore("main", {
"config.enableCustomListenerV6",
"config.customListenerV6Data",
"config.enableCustonProtocol",
"config.enableCustomProtocol",
"config.customProtocol",
"config.enablePreventSleep",
"config.compression",