Skip to content

Commit

Permalink
v1.5.4
Browse files Browse the repository at this point in the history
Plus fix and decoration
  • Loading branch information
alireza0 committed Aug 26, 2023
1 parent da5253d commit 11cd8f9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
go-version: '1.20'
- name: build linux amd64 version
run: |
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o xui-release -v main.go
Expand Down
2 changes: 1 addition & 1 deletion config/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.3
1.5.4
1 change: 1 addition & 0 deletions web/assets/js/model/xray.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,7 @@ class SockoptStreamSettings extends XrayCommonClass {
}

static fromJson(json = {}) {
if (Object.keys(json).length === 0) return undefined;
return new SockoptStreamSettings(
json.acceptProxyProtocol,
json.tcpFastOpen,
Expand Down
2 changes: 2 additions & 0 deletions web/html/xui/form/sniffing.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{{define "form/sniffing"}}
<a-form layout="inline">
<a-divider dashed style="margin:0;">
<a-form-item>
<span slot="label">
sniffing
Expand All @@ -12,6 +13,7 @@
</span>
<a-switch v-model="inbound.sniffing.enabled"></a-switch>
</a-form-item>
</a-divider>
<a-form-item>
<a-checkbox-group v-model="inbound.sniffing.destOverride" v-if="inbound.sniffing.enabled">
<a-checkbox v-for="key,value in SNIFFING_OPTION" :value="key">[[ value ]]</a-checkbox>
Expand Down
2 changes: 2 additions & 0 deletions web/html/xui/form/stream/stream_settings.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{{define "form/streamSettings"}}
<!-- select stream network -->
<a-form layout="inline">
<a-divider dashed style="margin:0;">
<a-form-item label="{{ i18n "transmission" }}">
<a-select v-model="inbound.stream.network" @change="streamNetworkChange"
:dropdown-class-name="themeSwitcher.darkCardClass">
Expand All @@ -12,6 +13,7 @@
<a-select-option value="grpc">grpc</a-select-option>
</a-select>
</a-form-item>
</a-divider>
</a-form>

<!-- tcp -->
Expand Down
2 changes: 2 additions & 0 deletions web/html/xui/form/stream/stream_sockopt.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{{define "form/streamSockopt"}}
<a-form layout="inline">
<a-divider dashed style="margin:0;">
<a-form-item label="Transparent Proxy">
<a-switch v-model="inbound.stream.sockoptSwitch"></a-switch>
</a-form-item>
</a-divider>
<table width="100%" class="ant-table-tbody" v-if="inbound.stream.sockoptSwitch">
<tr>
<td>Accept Proxy Protocol</td>
Expand Down
2 changes: 2 additions & 0 deletions web/html/xui/form/tls_settings.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{{define "form/tlsSettings"}}
<!-- tls enable -->
<a-form v-if="inbound.canSetTls()" layout="inline">
<a-divider dashed style="margin:0;">
<a-form-item label="TLS">
<a-switch v-model="inbound.tls">
</a-switch>
</a-form-item>
<a-form-item v-if="inbound.canEnableReality()" label="Reality">
<a-switch v-model="inbound.reality"></a-switch>
</a-form-item>
</a-divider>
</a-form>

<!-- tls settings -->
Expand Down

0 comments on commit 11cd8f9

Please sign in to comment.