Comparing version 2.3.74 to 2.3.75
{ | ||
"name": "netget", | ||
"version": "2.3.74", | ||
"version": "2.3.75", | ||
"description": "Rette Adepto/ Recibido Directamente.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -34,3 +34,3 @@ // netget_MainMenu.js | ||
case 'NetGetX': | ||
console.log(chalk.cyan.bold('Initializing NetGetX v0.0.21...')); | ||
console.log(chalk.cyan.bold('Initializing NetGetX v0.0.22...')); | ||
try { | ||
@@ -37,0 +37,0 @@ const setupVerified = await i_DefaultNetGetX(); |
@@ -6,4 +6,4 @@ { | ||
"nginxSitesEnabled": "/opt/homebrew/etc/nginx/sites-enabled", | ||
"nginxExecutable": "/opt/homebrew/bin/nginx", | ||
"useSudo": false | ||
"useSudo": false, | ||
"nginxExecutable": "/opt/homebrew/bin/nginx" | ||
} |
@@ -6,2 +6,3 @@ // NetGetX.cli.js | ||
import { handleAddNewXBlock } from './src/handleAddNewXBlock.js'; | ||
import { NetGetMainMenu } from '../netget_MainMenu.cli.js'; | ||
//import { showNGXBlocks, addNewNGXBlock, showNGXDiscoveryNode, addNewNGXDiscoveryNode, netGetXSettings, aboutNetGetX } from './netGetXOptions.js'; | ||
@@ -20,2 +21,3 @@ export async function NetGetX() { | ||
'About NetGetX', | ||
'Main Menu', | ||
'Exit' | ||
@@ -34,2 +36,6 @@ ] | ||
break; | ||
case 'Main Menu': | ||
console.log(chalk.blue('Returning to the main menu...')); | ||
await NetGetMainMenu(); | ||
break; | ||
// Continue handling other cases similarly | ||
@@ -36,0 +42,0 @@ case 'Exit': |
869558
1070