From fdb99d57d614bd5355d6de21c1d27cd9faadb328 Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sun, 1 Jun 2025 10:04:36 -0700 Subject: [PATCH] feat: show tvapp2 version as console message --- tvapp2/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tvapp2/index.js b/tvapp2/index.js index d9918315..cff7f103 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -2351,6 +2351,11 @@ const server = http.createServer( ( request, response ) => chalk.blueBright( `` ), chalk.gray( `Server is now running on` ), chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ), chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envIpContainer }:${ envWebPort } ` ) ); + + Log.info( `core`, chalk.yellow( `[initiate]` ), chalk.white( `ℹ️` ), + chalk.blueBright( `` ), chalk.gray( `Running TVApp2 version` ), + chalk.blueBright( `` ), chalk.gray( ` ${ version } ` ), + chalk.blueBright( `` ), chalk.gray( ` ${ envAppRelease } ` ) ); }); })();