-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12/19/2014 - Afffsdd made the Bytecode Viewer directory hidden. 12/19/2014 - Added save Java file as, for singular class file decompilation (this is threaded). 12/19/2014 - Removed unused Bytecode Decompiler debug code. 12/20/2014 - Made a new outdated pane - http://i.imgur.com/xMxkwJ9.png 12/20/2014 - Added an expand/collapse the packages in the file navigator. 12/20/2014 - Moved all of the settings to the.bytecode.club.bytecodeviewer.Settings 12/20/2014 - If the class file does not start with CAFEBABE it won't be processed. 12/20/2014 - Properly handled file not found error. 12/21/2014 - Fixed the Refresh Class causing a dupe.
- Loading branch information
Showing
16 changed files
with
783 additions
and
497 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.0 | ||
2.4.0 |
401 changes: 111 additions & 290 deletions
401
src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ public AboutWindow() { | |
txtrBytecodeViewerIs.setWrapStyleWord(true); | ||
getContentPane().add(txtrBytecodeViewerIs, "name_140466526081695"); | ||
txtrBytecodeViewerIs | ||
.setText("Bytecode Viewer 2.3.0 is an open source program\r\ndeveloped by Konloch ([email protected])\r\nDir: " | ||
.setText("Bytecode Viewer "+BytecodeViewer.version+" is an open source program\r\ndeveloped by Konloch ([email protected])\r\nDir: " | ||
+ BytecodeViewer.getBCVDirectory() | ||
+ "\r\n\r\nIt uses code from the following:\r\n J-RET by WaterWolf\r\n JHexPane by Sam Koivu\r\n RSyntaxTextArea by Bobbylight\r\n Commons IO by Apache\r\n ASM by OW2\r\n CFIDE by Bibl\r\n FernFlower by Stiver\r\n Procyon by Mstrobel\r\n CFR by Lee Benfield\r\n\r\nIf you're interested in Java Reverse\r\nEngineering, join The Bytecode Club\r\nhttps://the.bytecode.club"); | ||
txtrBytecodeViewerIs.setEnabled(false); | ||
|
Oops, something went wrong.