From f0165c1ad801c594b64b9d2178cf8b9cfe053a49 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Fri, 30 Aug 2024 09:28:44 +0200 Subject: [PATCH] v2.3.14 --- README.es_ES.md | 4 ++-- README.md | 4 ++-- README.ru_RU.md | 4 ++-- README.zh_CN.md | 4 ++-- config/version | 2 +- web/assets/js/model/outbound.js | 6 +++--- web/html/xui/form/outbound.html | 4 ++-- web/html/xui/settings.html | 14 +++++++------- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.es_ES.md b/README.es_ES.md index e514f07305..ded7d9f9eb 100644 --- a/README.es_ES.md +++ b/README.es_ES.md @@ -32,10 +32,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install. ## Instalar una Versión Personalizada -Para instalar la versión deseada, agrega la versión al final del comando de instalación. Por ejemplo, ver `v2.3.13`: +Para instalar la versión deseada, agrega la versión al final del comando de instalación. Por ejemplo, ver `v2.3.14`: ``` -bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.13 +bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.14 ``` ## Certificado SSL diff --git a/README.md b/README.md index bf398d066b..0bb946986c 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install. ## Install Custom Version -To install your desired version, add the version to the end of the installation command. e.g., ver `v2.3.13`: +To install your desired version, add the version to the end of the installation command. e.g., ver `v2.3.14`: ``` -bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.13 +bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.14 ``` ## SSL Certificate diff --git a/README.ru_RU.md b/README.ru_RU.md index 08613405aa..8f83be0385 100644 --- a/README.ru_RU.md +++ b/README.ru_RU.md @@ -32,10 +32,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install. ## Установка определённой версии -Чтобы установить нужную вам версию, добавьте номер версии в конец команды установки. Например, `v2.3.13`: +Чтобы установить нужную вам версию, добавьте номер версии в конец команды установки. Например, `v2.3.14`: ``` -bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.13 +bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.14 ``` ## SSL Сертификат diff --git a/README.zh_CN.md b/README.zh_CN.md index 14ac8de46a..b320037c6a 100644 --- a/README.zh_CN.md +++ b/README.zh_CN.md @@ -32,10 +32,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install. ## 安装指定版本 -要安装所需的版本,请将该版本添加到安装命令的末尾。 e.g., ver `v2.3.13`: +要安装所需的版本,请将该版本添加到安装命令的末尾。 e.g., ver `v2.3.14`: ``` -bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.13 +bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.3.14 ``` ## SSL 认证 diff --git a/config/version b/config/version index da924f5d1f..ac805d3e09 100644 --- a/config/version +++ b/config/version @@ -1 +1 @@ -2.3.13 \ No newline at end of file +2.3.14 \ No newline at end of file diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 59da542a5c..5c019a3c67 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -909,15 +909,15 @@ Outbound.FreedomSettings.Fragment = class extends CommonClass { } }; Outbound.FreedomSettings.Noise = class extends CommonClass { - constructor(packets = '', delay = '') { + constructor(packet = '', delay = '') { super(); - this.packets = packets; + this.packet = packet; this.delay = delay; } static fromJson(json = {}) { return new Outbound.FreedomSettings.Noise( - json.packets, + json.packet, json.delay, ); } diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index a579b7a6a2..1f79671f69 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -45,8 +45,8 @@