This commit is contained in:
MHSanaei 2023-12-13 19:55:20 +03:30
parent 8d18c8e98f
commit dc910ba007
5 changed files with 6 additions and 6 deletions

View file

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

View file

@ -1 +1 @@
2.0.0
2.0.1

View file

@ -72,7 +72,7 @@
});
},
genSubLink(subID) {
return app.subSettings.subURI+subID+'?name='+subID;
return app.subSettings.subURI+subID;
}
},
updated() {

View file

@ -172,7 +172,7 @@
<span>{{ i18n "pages.client.renew" }}</span>
</template>
Short Ids
<a-icon @click="inbound.stream.reality.shortIds = RandomUtil.randomShortId().join(',')" type="sync">
<a-icon @click="inbound.stream.reality.shortIds = RandomUtil.randomShortId()" type="sync"> </a-icon>
</a-icon>
</template>
<a-input v-model.trim="inbound.stream.reality.shortIds" style="width:250px"></a-input>

View file

@ -303,7 +303,7 @@
infoModal.visible = false;
},
genSubLink(subID) {
return app.subSettings.subURI+subID+'?name='+subID;
return app.subSettings.subURI+subID;
}
};