From 663314a801b016f2e9fb5a66bf2b8c4cbf0ca1d7 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Dec 2025 20:55:50 +0000 Subject: [PATCH] Fix version display and remove remaining COTURN status line - Updated header from 'Easy Asterisk v1.23' to 'v0.9.9' - Updated pjsip.conf comment from v1.23 to v0.9.9 - Removed 'COTURN: Not installed' status line from main menu - All COTURN references now completely removed from UI User-visible changes: - Main menu now correctly shows 'Easy Asterisk v0.9.9' - Status section only shows Server and Client (no COTURN line) - pjsip.conf generated with correct version comment --- easy-asterisk-v0.9.9.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/easy-asterisk-v0.9.9.sh b/easy-asterisk-v0.9.9.sh index ee82acb..370781c 100644 --- a/easy-asterisk-v0.9.9.sh +++ b/easy-asterisk-v0.9.9.sh @@ -2460,7 +2460,7 @@ ${all_local_nets}" fi cat > "$conf_file" << EOF -; Easy Asterisk v1.23 +; Easy Asterisk v0.9.9 [global] type=global user_agent=EasyAsterisk @@ -3255,14 +3255,13 @@ uninstall_menu() { show_main_menu() { clear - print_header "Easy Asterisk v1.23" - + print_header "Easy Asterisk v0.9.9" + load_config echo " Status:" if [[ -f "$CONFIG_FILE" ]]; then [[ "$INSTALLED_SERVER" == "y" ]] && echo -e " Server: ${GREEN}Installed${NC}" || echo -e " Server: ${YELLOW}Not installed${NC}" [[ "$INSTALLED_CLIENT" == "y" ]] && echo -e " Client: ${GREEN}Installed${NC}" || echo -e " Client: ${YELLOW}Not installed${NC}" - [[ "$INSTALLED_COTURN" == "y" ]] && echo -e " COTURN: ${GREEN}Installed${NC}" || echo -e " COTURN: ${YELLOW}Not installed${NC}" [[ -n "$DOMAIN_NAME" ]] && echo -e " Domain: ${DOMAIN_NAME}" else echo -e " ${YELLOW}Not configured${NC}"