diff --git a/README.md b/README.md index 9d21f55c..0b281fbf 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer. #### New Features +* Updated nearly all dependencies (incl. decompilers like CFR, JD-GUI etc.) * Updated ASM library to version 9.1 * Added support to Java files compiled using JDK > 13 * Migrated to Maven @@ -60,4 +61,16 @@ You may need to execute it via command line ```java -jar Bytecode-Viewer-2.9.x.j All you have to do is add a jar, class or APK file into the workspace. Then select the file you'd like to view from the workspace. BCV will automatically start decompiling the class in the background. When it's done it will show the Source code, Bytecode and Hexcode of the class file you chose (depending on the View panes you have selected). If you are trying to view a resource BCV will attempt to display it the best it can with code highlighting or by embedding the resources itself. ##### Are you a Java Reverse Engineer? Do you want to learn? -Join The Bytecode Club Today! - https://the.bytecode.club \ No newline at end of file +Join The Bytecode Club Today! - https://the.bytecode.club + +## Instructions to compile + +Just clone this repo, **!INITIALIZE THE SUBMODULES!** and run ``mvn package``. It's that simple! + +## Working on the source + +Open the Maven project (e.g. in IntelliJ, open the ``pom.xml`` as a project file) and add the following folders as source roots: +``` +libs/byte-engineer/byteanalysis/src/main/java +libs/byte-engineer/byteio/src/main/java +```