File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed 
src/main/java/jadx/gui/plugins Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 5252import  java .util .prefs .Preferences ;
5353import  java .util .function .Function ;
5454
55+ // Importing custom banner string 
56+ import  jadx .gui .plugins .JadxAIMCPBanner ;
57+ 
5558public  class  JadxAIMCP  implements  JadxPlugin  {
5659    private  MainWindow  mainWindow ;
5760    private  Javalin  app ;
@@ -240,8 +243,9 @@ public void start() {
240243            app .get ("/rename-field" , this ::handleRenameField );
241244            app .get ("/health" , this ::handleHealth );
242245
246+             logger .info (JadxAIMCPBanner .banner );
243247            logger .info (
244-                     "// -------------------- JADX AI MCP PLUGIN -------------------- //\n  - By Jafar Pathan (https://github.com/zinja-coder) \n  - To Report Issues : https://github.com/zinja-coder/jadx-ai-mcp \n \n " );
248+                     "// -------------------- JADX AI MCP PLUGIN -------------------- //\n \n " );
245249            logger .info ("JADX AI MCP Plugin HTTP Server Started at http://127.0.0.1:"  + currentPort  + "/" );
246250        } catch  (Exception  e ) {
247251            logger .error ("JADX-AI-MCP Plugin Error: Could not start HTTP Server on. Exception: " 
Original file line number Diff line number Diff line change 1+ package  jadx .gui .plugins ;
2+ 
3+ public  class  JadxAIMCPBanner  {
4+     public  static  final  String  banner  = 
5+             "\n "  +
6+             "    ░█████    ░███    ░███████   ░██    ░██       ░███    ░██████   ░███     ░███   ░██████  ░█████████  \n "  +
7+             "      ░██    ░██░██   ░██   ░██   ░██  ░██       ░██░██     ░██     ░████   ░████  ░██   ░██ ░██     ░██ \n "  +
8+             "      ░██   ░██  ░██  ░██    ░██   ░██░██       ░██  ░██    ░██     ░██░██ ░██░██ ░██        ░██     ░██ \n "  +
9+             "      ░██  ░█████████ ░██    ░██    ░███       ░█████████   ░██     ░██ ░████ ░██ ░██        ░█████████  \n "  +
10+             "░██   ░██  ░██    ░██ ░██    ░██   ░██░██      ░██    ░██   ░██     ░██  ░██  ░██ ░██        ░██          \n "  +
11+             "░██   ░██  ░██    ░██ ░██   ░██   ░██  ░██     ░██    ░██   ░██     ░██       ░██  ░██   ░██ ░██          \n "  +
12+             " ░██████   ░██    ░██ ░███████   ░██    ░██    ░██    ░██ ░██████   ░██       ░██   ░██████  ░██         \n "  + 
13+             "\n \n " +
14+             "\n Author         -> Jafar Pathan (zinja-coder@github)" +
15+             "\n For Issues     -> https://github.com/zinja-coder/jadx-ai-mcp" +
16+             "\n Plugin Version -> v3.3.3" ;
17+ }
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments