diff --git a/BytecodeViewer 2.1.0.jar b/BytecodeViewer 2.1.1.jar similarity index 94% rename from BytecodeViewer 2.1.0.jar rename to BytecodeViewer 2.1.1.jar index 31161354..b1ca0088 100644 Binary files a/BytecodeViewer 2.1.0.jar and b/BytecodeViewer 2.1.1.jar differ diff --git a/README.txt b/README.txt index 8dfad5fa..0c75a531 100644 --- a/README.txt +++ b/README.txt @@ -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. \ No newline at end of file +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. \ No newline at end of file diff --git a/VERSION b/VERSION index 50aea0e7..7c327287 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.1.1 \ No newline at end of file diff --git a/libs/cfr_0_90.jar b/libs/cfr_0_91.jar similarity index 82% rename from libs/cfr_0_90.jar rename to libs/cfr_0_91.jar index ee069e12..bf6b1f53 100644 Binary files a/libs/cfr_0_90.jar and b/libs/cfr_0_91.jar differ diff --git a/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index 562a8382..2456d6ce 100644 --- a/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -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 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(); diff --git a/src/the/bytecode/club/bytecodeviewer/gui/EZInjectionOptions.java b/src/the/bytecode/club/bytecodeviewer/gui/EZInjectionOptions.java index 7b362cb5..31b5c113 100644 --- a/src/the/bytecode/club/bytecodeviewer/gui/EZInjectionOptions.java +++ b/src/the/bytecode/club/bytecodeviewer/gui/EZInjectionOptions.java @@ -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);