This commit is contained in:
Konloch 2021-06-29 08:17:42 -07:00
parent 7ba9e03cb0
commit fdcd49883b
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer. Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer.
#### New Features #### New Features
* Translation Process Started
* Dark Mode * Dark Mode
* Updated nearly all dependencies (incl. decompilers like CFR, JD-GUI etc.) * Updated nearly all dependencies (incl. decompilers like CFR, JD-GUI etc.)
* Updated ASM library to version 9.1 * Updated ASM library to version 9.1

View File

@ -109,7 +109,7 @@ public class BytecodeViewer
public static String[] args; public static String[] args;
public static MainViewerGUI viewer = null; public static MainViewerGUI viewer = null;
public static ClassNodeLoader loader = new ClassNodeLoader(); //might be insecure due to assholes targeting BCV, public static ClassNodeLoader loader = new ClassNodeLoader(); //might be insecure due to assholes targeting BCV,
public static SecurityMan sm = new SecurityMan(); //might be insecure due to assholes targeting BCV, however public static SecurityMan sm = new SecurityMan(); //might be insecure due to assholes targeting BCV,
public static Refactorer refactorer = new Refactorer(); public static Refactorer refactorer = new Refactorer();
public static List<FileContainer> files = new ArrayList<>(); //all of BCV's loaded files/classes/etc public static List<FileContainer> files = new ArrayList<>(); //all of BCV's loaded files/classes/etc
public static List<Process> createdProcesses = new ArrayList<>(); public static List<Process> createdProcesses = new ArrayList<>();