Skip to content

Commit 6b4a119

Browse files
committed
2.1.1
12/09/2014 - Updated CFR to cfr_0_91.
1 parent 60ad7ff commit 6b4a119

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed
Binary file not shown.

README.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,6 @@ Changelog:
167167
11/16/2014 - Added the option to launch BCV command line as java -jar bcv.jar C:/test.jar C:/example/whatever.jar
168168
11/17/2014 - Fixed an issue with the out of date checking UI still activating when not selected.
169169
11/19/2014 - Added annotatitons/local variables to the methodnode decompiler (Thanks Bibl).
170-
11/21/2014 - Decided to release it with the obfuscator/reflection kit unfinished, they're currently disabled for future use.
170+
11/21/2014 - Decided to release it with the obfuscator/reflection kit unfinished, they're currently disabled for future use.
171+
--- 2.1.1 ---:
172+
12/09/2014 - Upated CFR to cfr_0_91.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0
1+
2.1.1
Binary file not shown.

src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@
202202
* 11/17/2014 - Fixed an issue with the out of date checking UI still activating when not selected.
203203
* 11/19/2014 - Added annotatitons/local variables to the methodnode decompiler (Thanks Bibl).
204204
* 11/21/2014 - Decided to release it with the obfuscator/reflection kit unfinished, they're currently disabled for future use.
205+
* -----2.1-----:
206+
* Updated CFR to cfr_0_91.
205207
*
206208
* @author Konloch
207209
*
@@ -223,7 +225,7 @@ public class BytecodeViewer {
223225
private static ArrayList<String> recentPlugins = DiskReader.loadArrayList(pluginsName, false);
224226
public static boolean runningObfuscation = false;
225227

226-
public static String version = "2.1.0";
228+
public static String version = "2.1.1";
227229

228230
public static void main(String[] args) {
229231
iconList = new ArrayList<BufferedImage>();

src/the/bytecode/club/bytecodeviewer/gui/EZInjectionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public EZInjectionOptions() {
2828
setTitle("EZ Injection Options");
2929
getContentPane().setLayout(null);
3030

31-
final JCheckBox accessModifiers = new JCheckBox("Change Access Modifiers");
31+
final JCheckBox accessModifiers = new JCheckBox("Set All Access Modifiers Public");
3232
accessModifiers.setSelected(true);
3333
accessModifiers.setBounds(6, 7, 232, 23);
3434
getContentPane().add(accessModifiers);

0 commit comments

Comments
 (0)