Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaveh-ahangar <123722737+kaveh-ahangar@users.noreply.github.com>2023-05-05 12:36:59 +0300
committerGitHub <noreply@github.com>2023-05-05 12:36:59 +0300
commit73704e38d5d405ab32654763936c924b43fd3a81 (patch)
treeee2a2fa66b478fffa4ce5163f4cf70ee6bf2ba45 /web/html/xui/form/stream
parent1680bb36c3e9c2f89c72947e1735337fe5fd1e8b (diff)
parent1a603b2501b8c3d82b59eb249cfb8e13421e64de (diff)
Merge branch 'MHSanaei:main' into main
Diffstat (limited to 'web/html/xui/form/stream')
-rw-r--r--web/html/xui/form/stream/stream_kcp.html28
-rw-r--r--web/html/xui/form/stream/stream_quic.html12
-rw-r--r--web/html/xui/form/stream/stream_tcp.html2
3 files changed, 21 insertions, 21 deletions
diff --git a/web/html/xui/form/stream/stream_kcp.html b/web/html/xui/form/stream/stream_kcp.html
index fd31b1ee..52a930f9 100644
--- a/web/html/xui/form/stream/stream_kcp.html
+++ b/web/html/xui/form/stream/stream_kcp.html
@@ -2,37 +2,37 @@
<a-form layout="inline">
<a-form-item label='{{ i18n "camouflage" }}'>
<a-select v-model="inbound.stream.kcp.type" style="width: 280px;">
- <a-select-option value="none">None(Not Camouflage)</a-select-option>
- <a-select-option value="srtp">SRTP(Camouflage Video Call)</a-select-option>
- <a-select-option value="utp">UTP(Camouflage BT Download)</a-select-option>
- <a-select-option value="wechat-video">Wechat-Video(Camouflage WeChat Video)</a-select-option>
- <a-select-option value="dtls">DTLS(Camouflage DTLS 1.2 Packages)</a-select-option>
- <a-select-option value="wireguard">Wireguard(Camouflage Wireguard Packages)</a-select-option>
+ <a-select-option value="none">None (Not Camouflage)</a-select-option>
+ <a-select-option value="srtp">SRTP (Camouflage Video Call)</a-select-option>
+ <a-select-option value="utp">UTP (Camouflage BT Download)</a-select-option>
+ <a-select-option value="wechat-video">Wechat-Video (Camouflage WeChat Video)</a-select-option>
+ <a-select-option value="dtls">DTLS (Camouflage DTLS 1.2 Packages)</a-select-option>
+ <a-select-option value="wireguard">Wireguard (Camouflage Wireguard Packages)</a-select-option>
</a-select>
</a-form-item>
<a-form-item label='{{ i18n "password" }}'>
- <a-input v-model.number="inbound.stream.kcp.seed"></a-input>
- </a-form-item>
+ <a-input v-model="inbound.stream.kcp.seed"></a-input>
+ </a-form-item><br />
<a-form-item label="MTU">
- <a-input type="number" v-model.number="inbound.stream.kcp.mtu"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.mtu"></a-input-number>
</a-form-item>
<a-form-item label="TTI (ms)">
- <a-input type="number" v-model.number="inbound.stream.kcp.tti"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.tti"></a-input-number>
</a-form-item>
<a-form-item label="Uplink Capacity (MB/S)">
- <a-input type="number" v-model.number="inbound.stream.kcp.upCap"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.upCap"></a-input-number>
</a-form-item>
<a-form-item label="Downlink Capacity (MB/S)">
- <a-input type="number" v-model.number="inbound.stream.kcp.downCap"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.downCap"></a-input-number>
</a-form-item>
<a-form-item label="Congestion">
<a-switch v-model="inbound.stream.kcp.congestion"></a-switch>
</a-form-item>
<a-form-item label="Read Buffer Size (MB)">
- <a-input type="number" v-model.number="inbound.stream.kcp.readBuffer"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.readBuffer"></a-input-number>
</a-form-item>
<a-form-item label="Write Buffer Size (MB)">
- <a-input type="number" v-model.number="inbound.stream.kcp.writeBuffer"></a-input>
+ <a-input-number v-model="inbound.stream.kcp.writeBuffer"></a-input-number>
</a-form-item>
</a-form>
{{end}} \ No newline at end of file
diff --git a/web/html/xui/form/stream/stream_quic.html b/web/html/xui/form/stream/stream_quic.html
index 2a48af84..4d04587a 100644
--- a/web/html/xui/form/stream/stream_quic.html
+++ b/web/html/xui/form/stream/stream_quic.html
@@ -12,12 +12,12 @@
</a-form-item>
<a-form-item label='{{ i18n "camouflage" }}'>
<a-select v-model="inbound.stream.quic.type" style="width: 280px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
- <a-select-option value="none">none(not camouflage)</a-select-option>
- <a-select-option value="srtp">srtp(camouflage video call)</a-select-option>
- <a-select-option value="utp">utp(camouflage BT download)</a-select-option>
- <a-select-option value="wechat-video">wechat-video(camouflage WeChat video)</a-select-option>
- <a-select-option value="dtls">dtls(camouflage DTLS 1.2 packages)</a-select-option>
- <a-select-option value="wireguard">wireguard(camouflage wireguard packages)</a-select-option>
+ <a-select-option value="none">none (not camouflage)</a-select-option>
+ <a-select-option value="srtp">srtp (camouflage video call)</a-select-option>
+ <a-select-option value="utp">utp (camouflage BT download)</a-select-option>
+ <a-select-option value="wechat-video">wechat-video (camouflage WeChat video)</a-select-option>
+ <a-select-option value="dtls">dtls (camouflage DTLS 1.2 packages)</a-select-option>
+ <a-select-option value="wireguard">wireguard (camouflage wireguard packages)</a-select-option>
</a-select>
</a-form-item>
</a-form>
diff --git a/web/html/xui/form/stream/stream_tcp.html b/web/html/xui/form/stream/stream_tcp.html
index 958f8f25..993fb0d0 100644
--- a/web/html/xui/form/stream/stream_tcp.html
+++ b/web/html/xui/form/stream/stream_tcp.html
@@ -4,7 +4,7 @@
<a-form-item label="AcceptProxyProtocol">
<a-switch v-model="inbound.stream.tcp.acceptProxyProtocol"></a-switch>
</a-form-item>
- <a-form-item label="HTTP {{ i18n "camouflage" }}">
+ <a-form-item label='HTTP {{ i18n "camouflage" }}'>
<a-switch
:checked="inbound.stream.tcp.type === 'http'"
@change="checked => inbound.stream.tcp.type = checked ? 'http' : 'none'">