From de43f9779c8c7952aa1331f34437dd69df90655d Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Fri, 1 Mar 2024 18:45:12 +0100 Subject: [PATCH] v0.0.2 --- README.md | 6 ++++-- backend/config/version | 2 +- install.sh | 12 ++++++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index bf5bc0a..8e0f1dd 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,9 @@ ## Default Installation Informarion - Panel Port: 2095 +- Panel Path: /app/ - Subscription Port: 2096 +- Subscription Path: /sub/ - User/Passowrd: admin ## Install & Upgrade to Latest Version @@ -95,6 +97,7 @@ docker build -t s-ui . - English - Farsi +- Chinese (Simplified) ## Features @@ -153,5 +156,4 @@ certbot certonly --standalone --register-unsafely-without-email --non-interactiv ## Stargazers over Time - -[![Stargazers over time](https://starchart.cc/alireza0/s-ui.svg)](https://starchart.cc/alireza0/s-ui) +[![Stargazers over time](https://starchart.cc/alireza0/s-ui.svg?variant=adaptive)](https://starchart.cc/alireza0/s-ui) diff --git a/backend/config/version b/backend/config/version index 8a9ecc2..7bcd0e3 100644 --- a/backend/config/version +++ b/backend/config/version @@ -1 +1 @@ -0.0.1 \ No newline at end of file +0.0.2 \ No newline at end of file diff --git a/install.sh b/install.sh index 0e25a1d..87fb9cd 100755 --- a/install.sh +++ b/install.sh @@ -79,12 +79,16 @@ config_after_install() { echo -e "${yellow}Install/update finished! For security it's recommended to modify panel settings ${plain}" read -p "Do you want to continue with the modification [y/n]? ": config_confirm if [[ "${config_confirm}" == "y" || "${config_confirm}" == "Y" ]]; then - read -p "Enter the ${yellow}panel port${plain} (leave blank for existing/default value):" config_port - read -p "Enter the ${yellow}panel path${plain} (leave blank for existing/default value):" config_path + echo -e "Enter the ${yellow}panel port${plain} (leave blank for existing/default value):" + read config_port + echo -e "Enter the ${yellow}panel path${plain} (leave blank for existing/default value):" + read config_path # Sub configuration - read -p "Enter the ${yellow}subscription port${plain} (leave blank for existing/default value):" config_subPort - read -p "Enter the ${yellow}subscription path${plain} (leave blank for existing/default value):" config_subPath + echo -e "Enter the ${yellow}subscription port${plain} (leave blank for existing/default value):" + read config_subPort + echo -e "Enter the ${yellow}subscription path${plain} (leave blank for existing/default value):" + read config_subPath # Set configs echo -e "${yellow}Initializing, please wait...${plain}"