Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
12/09/2014 - Updated CFR to cfr_0_91.
  • Loading branch information
Konloch committed Dec 9, 2014
1 parent 60ad7ff commit 6b4a119
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
Binary file not shown.
4 changes: 3 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
Binary file renamed libs/cfr_0_90.jar → libs/cfr_0_91.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@
* 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
*
Expand All @@ -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>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public EZInjectionOptions() {
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);
Expand Down

0 comments on commit 6b4a119

Please sign in to comment.