From ea507f6833c66f2657c18c77851f39944bff8db3 Mon Sep 17 00:00:00 2001 From: Konloch Date: Tue, 6 Jul 2021 17:53:29 -0700 Subject: [PATCH] Updated Welcome Message --- .../the/bytecode/club/bytecodeviewer/BytecodeViewer.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index 2d415a15..24a16f91 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -12,6 +12,7 @@ import org.apache.commons.io.FileUtils; import org.objectweb.asm.tree.ClassNode; import the.bytecode.club.bootloader.Boot; import the.bytecode.club.bytecodeviewer.api.ClassNodeLoader; +import the.bytecode.club.bytecodeviewer.api.ExceptionUI; import the.bytecode.club.bytecodeviewer.gui.components.*; import the.bytecode.club.bytecodeviewer.gui.resourceviewer.TabbedPane; import the.bytecode.club.bytecodeviewer.gui.resourceviewer.viewer.ClassViewer; @@ -137,7 +138,12 @@ public class BytecodeViewer launchArgs = args; //welcome message - System.out.println("https://the.bytecode.club - Created by @Konloch - Bytecode Viewer " + VERSION + ", " + "Fat-Jar: " + FAT_JAR); + System.out.print("Bytecode Viewer " + VERSION); + if(FAT_JAR) + System.out.print(" [FatJar]"); + + System.out.println(" - Created by @Konloch"); + System.out.println("https://bytecodeviewer.com - https://the.bytecode.club"); //set the security manager System.setSecurityManager(sm);