Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alireza0 committed Dec 11, 2023
1 parent b946f7a commit 905ffda
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ WORKDIR /app
ARG TARGETARCH
RUN apk --no-cache --update add build-base gcc wget unzip
COPY . .
RUN env CGO_ENABLED=1 go build -o build/x-ui main.go
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN go build -o build/x-ui main.go
RUN ./DockerInitFiles.sh "$TARGETARCH"

FROM alpine
Expand Down
2 changes: 1 addition & 1 deletion config/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
2 changes: 1 addition & 1 deletion sub/subService.go
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ func (s *SubService) genRemark(inbound *model.Inbound, email string, extra strin
orders['i'] = inbound.Remark
}
if len(extra) > 0 {
orders['e'] = extra
orders['o'] = extra
}

var remark []string
Expand Down
7 changes: 1 addition & 6 deletions web/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ style attribute {
}
.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
padding: 16px;
padding: 12px 16px;
overflow-wrap: break-word;
}
.ant-table-thead > tr > th {
Expand Down Expand Up @@ -399,11 +399,6 @@ style attribute {
background-color: rgb(255, 127, 127);
}

.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
padding: 16px 5px;
}

.ant-table-expand-icon-th,
.ant-table-row-expand-icon-cell {
width: 30px;
Expand Down
2 changes: 1 addition & 1 deletion web/html/xui/inbounds.html
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@
:columns="isMobile ? innerMobileColumns : innerColumns"
:data-source="getInboundClients(record)"
:pagination=pagination(getInboundClients(record))
:style="isMobile ? 'margin: -16px -5px -17px;' : 'margin-left: 10px;'">
style="margin: -12px -6px -13px;">
{{template "client_table"}}
</a-table>
</template>
Expand Down

0 comments on commit 905ffda

Please sign in to comment.