2.1.1
12/09/2014 - Updated CFR to cfr_0_91.
This commit is contained in:
parent
60ad7ff9ca
commit
6b4a119582
6 changed files with 8 additions and 4 deletions
Binary file not shown.
|
@ -168,3 +168,5 @@ Changelog:
|
|||
11/17/2014 - Fixed an issue with the out of date checking UI still activating when not selected.
|
||||
11/19/2014 - Added annotatitons/local variables to the methodnode decompiler (Thanks Bibl).
|
||||
11/21/2014 - Decided to release it with the obfuscator/reflection kit unfinished, they're currently disabled for future use.
|
||||
--- 2.1.1 ---:
|
||||
12/09/2014 - Upated CFR to cfr_0_91.
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.1.0
|
||||
2.1.1
|
Binary file not shown.
|
@ -202,6 +202,8 @@ import the.bytecode.club.bytecodeviewer.plugins.PluginManager;
|
|||
* 11/17/2014 - Fixed an issue with the out of date checking UI still activating when not selected.
|
||||
* 11/19/2014 - Added annotatitons/local variables to the methodnode decompiler (Thanks Bibl).
|
||||
* 11/21/2014 - Decided to release it with the obfuscator/reflection kit unfinished, they're currently disabled for future use.
|
||||
* -----2.1-----:
|
||||
* Updated CFR to cfr_0_91.
|
||||
*
|
||||
* @author Konloch
|
||||
*
|
||||
|
@ -223,7 +225,7 @@ public class BytecodeViewer {
|
|||
private static ArrayList<String> recentPlugins = DiskReader.loadArrayList(pluginsName, false);
|
||||
public static boolean runningObfuscation = false;
|
||||
|
||||
public static String version = "2.1.0";
|
||||
public static String version = "2.1.1";
|
||||
|
||||
public static void main(String[] args) {
|
||||
iconList = new ArrayList<BufferedImage>();
|
||||
|
|
|
@ -28,7 +28,7 @@ public class EZInjectionOptions extends JFrame {
|
|||
setTitle("EZ Injection Options");
|
||||
getContentPane().setLayout(null);
|
||||
|
||||
final JCheckBox accessModifiers = new JCheckBox("Change Access Modifiers");
|
||||
final JCheckBox accessModifiers = new JCheckBox("Set All Access Modifiers Public");
|
||||
accessModifiers.setSelected(true);
|
||||
accessModifiers.setBounds(6, 7, 232, 23);
|
||||
getContentPane().add(accessModifiers);
|
||||
|
|
Loading…
Reference in a new issue