12/09/2014 - Updated CFR to cfr_0_91.
This commit is contained in:
Kalen Kinloch 2014-12-09 00:36:38 -08:00
parent 60ad7ff9ca
commit 6b4a119582
6 changed files with 8 additions and 4 deletions

View File

@ -167,4 +167,6 @@ Changelog:
11/16/2014 - Added the option to launch BCV command line as java -jar bcv.jar C:/test.jar C:/example/whatever.jar
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.
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.

View File

@ -1 +1 @@
2.1.0
2.1.1

View File

@ -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>();

View File

@ -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);