You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
+6-31Lines changed: 6 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -96,35 +96,9 @@
96
96
* fix classfile searcher
97
97
* make the decompilers launch in a separate process?
98
98
*
99
-
* -----2.9.8-----:
100
-
* 07/19/2015 - Fixed enjarify.
101
-
* 07/20/2015 - Bibl sexified the boot loading time.
102
-
* 07/20/2015 - Decode APK Resources is selected by default.
103
-
* 07/20/2015 - Made the security manager slightly safer, it can still be targeted but not as obviously now.
104
-
* 07/20/2015 - Added CLI to the boot page.
105
-
* 07/21/2015 - Added support for offline mode in case you cannot connect to github for some reason. (kicks in after 7 seconds)
106
-
* 07/21/2015 - Added fatjar option back, in case anyone wants a 100% portable version.
107
-
* 07/21/2015 - Made it so it now shows the decompiler it's using - http://i.imgur.com/yMEzXwv.png.
108
-
* 07/21/2015 - Rewrote the file system, it now shows the path of the jar it's got loaded.
109
-
* 07/21/2015 - Now it shows if the decompiler is in editable mode or not.
110
-
* 07/21/2015 - Fixed Enjarify bug from new security manager.
111
-
* 07/22/2015 - Fixed a typo (Thanks affffsdsd)
112
-
* 07/22/2015 - Finally added icons to the File Navigator, credits to http://famfamfam.com/lab/icons/silk/ for the icons.
113
-
* 07/22/2015 - JD-GUI is now the default decompiler for GUI.
114
-
* 07/22/2015 - Added Set Python 3.X to the UI.
115
-
* 07/22/2015 - Fixed krakatau/export as jar bug introduced by file system update.
116
-
* 07/22/2015 - Sped up krakatau decompiler/disassembler on big files.
117
-
* 07/22/2015 - Made it so when you press enter on the file navigation pane it opens the class.
118
-
* 07/22/2015 - The Quick file search now opens the files again.
119
-
* 07/23/2015 - Fixed opening single files and file folders into BCV
120
-
* 07/24/2015 - Added File>Reload Resources.
121
-
* 07/26/2015 - Fixed the view pane refresh after toggling a viewer, it's now flawless.
122
-
* 07/26/2015 - Fixed Krakatau Disassembler.
123
-
* 07/26/2015 - Mibbzz is gay once again.
124
-
* 07/30/2015 - Removed Janino Compiler & moved to Javac, it can now compile decompiled classes again.
125
-
* 07/30/2015 - Affssdd fixed the File Navigator Pane's Quick Class Search.
126
-
* 07/30/2015 - Fixed a process leak in KrakatauDisassembler.
127
-
* 07/30/2015 - Started working on converting all the decompilers to launch in their own process in an effort to reduce BCV resources (only for non-fatjar version).
99
+
* -----2.9.9-----:
100
+
* 08/01/2015 - Fixed a pingback concurrency exception issue.
101
+
* 08/01/2015 - Fixed a typo for FernFlower decompiler.
128
102
*
129
103
* @author Konloch
130
104
*
@@ -135,7 +109,7 @@ public class BytecodeViewer {
135
109
/*per version*/
136
110
publicstaticStringversion = "2.9.8";
137
111
publicstaticbooleanpreviewCopy = false;
138
-
publicstaticbooleanfatJar = false;
112
+
publicstaticbooleanfatJar = false;//could be automatic by checking if it's loaded a class named whatever for a library
139
113
/*the rest*/
140
114
publicstaticbooleanverify = false; //eventually may be a setting
141
115
publicstaticString[] args;
@@ -465,7 +439,8 @@ public static void pingback() {
0 commit comments