This commit is contained in:
MHSanaei 2023-08-26 21:06:23 +03:30
parent f3280b46fe
commit 149bd0ec51
6 changed files with 6 additions and 9 deletions

View file

@ -23,10 +23,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.
# Install custom version # Install custom version
To install your desired version you can add the version to the end of install command. Example for ver `v1.7.6`: To install your desired version you can add the version to the end of install command. Example for ver `v1.7.7`:
``` ```
bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v1.7.6 bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v1.7.7
``` ```
# SSL # SSL

View file

@ -1 +1 @@
1.7.6 1.7.7

View file

@ -804,7 +804,7 @@ func (s *SubService) genRemark(inbound *model.Inbound, email string, extra strin
} }
} }
} }
return strings.Join(remark, "-") return strings.Join(remark, " : ")
} }
func searchKey(data interface{}, key string) (interface{}, bool) { func searchKey(data interface{}, key string) (interface{}, bool) {

View file

@ -1748,7 +1748,6 @@ Inbound.VmessSettings = class extends Inbound.Settings {
vmesses=[new Inbound.VmessSettings.Vmess()]) { vmesses=[new Inbound.VmessSettings.Vmess()]) {
super(protocol); super(protocol);
this.vmesses = vmesses; this.vmesses = vmesses;
this.disableInsecure = disableInsecureEncryption;
} }
indexOfVmessById(id) { indexOfVmessById(id) {
@ -1773,14 +1772,12 @@ Inbound.VmessSettings = class extends Inbound.Settings {
return new Inbound.VmessSettings( return new Inbound.VmessSettings(
Protocols.VMESS, Protocols.VMESS,
json.clients.map(client => Inbound.VmessSettings.Vmess.fromJson(client)), json.clients.map(client => Inbound.VmessSettings.Vmess.fromJson(client)),
ObjectUtil.isEmpty(json.disableInsecureEncryption) ? false : json.disableInsecureEncryption,
); );
} }
toJson() { toJson() {
return { return {
clients: Inbound.VmessSettings.toJsonArray(this.vmesses), clients: Inbound.VmessSettings.toJsonArray(this.vmesses),
disableInsecureEncryption: this.disableInsecure,
}; };
} }
}; };

View file

@ -87,7 +87,7 @@
}, },
genSubLink(subID) { genSubLink(subID) {
const { domain: host, port, tls: isTLS, path: base } = app.subSettings; const { domain: host, port, tls: isTLS, path: base } = app.subSettings;
return buildURL({ host, port, isTLS, base, path: subID+'?name='+subID }); return buildURL({ host, port, isTLS, base, path: subID+'?name='+remark });
} }
}, },
updated() { updated() {

View file

@ -296,7 +296,7 @@
}, },
genSubLink(subID) { genSubLink(subID) {
const { domain: host, port, tls: isTLS, path: base } = app.subSettings; const { domain: host, port, tls: isTLS, path: base } = app.subSettings;
return buildURL({ host, port, isTLS, base, path: subID+'?name='+subID }); return buildURL({ host, port, isTLS, base, path: subID+'?name='+remark });
} }
}; };