diff --git a/BytecodeViewer 2.7.0.jar b/BytecodeViewer 2.7.1.jar similarity index 93% rename from BytecodeViewer 2.7.0.jar rename to BytecodeViewer 2.7.1.jar index 5d9fd4e9..29035202 100644 Binary files a/BytecodeViewer 2.7.0.jar and b/BytecodeViewer 2.7.1.jar differ diff --git a/README.txt b/README.txt index 916f941a..c448d002 100644 --- a/README.txt +++ b/README.txt @@ -274,4 +274,6 @@ Changelog: 01/15/2015 - Slightly updated the change log display, it'll now show all the changes since your version. 01/16/2015 - Made EZ-Injection UI look a bit nicer. 01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager. -01/27/2015 - BCV now blocks exec and won't allow any ports to be bound. \ No newline at end of file +01/27/2015 - BCV now blocks exec and won't allow any ports to be bound. +--- 2.7.1 ---: +01/27/2015 - Fixed hide file. \ No newline at end of file diff --git a/VERSION b/VERSION index 9aa34646..5588ae82 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.0 \ No newline at end of file +2.7.1 \ No newline at end of file diff --git a/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index 92862eae..25914e23 100644 --- a/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -301,6 +301,8 @@ import the.bytecode.club.bytecodeviewer.plugins.PluginManager; * 01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager. * 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound. * 01/27/2015 - Added java.awt.Robot to the malicious code scanner. + * -----2.7.1-----: + * 01/27/2015 - Fixed hide file. * * @author Konloch * @@ -321,7 +323,7 @@ public class BytecodeViewer { private static ArrayList recentFiles = DiskReader.loadArrayList(filesName, false); private static ArrayList recentPlugins = DiskReader.loadArrayList(pluginsName, false); public static boolean runningObfuscation = false; - public static String version = "2.7.0"; + public static String version = "2.7.1"; private static long start = System.currentTimeMillis(); public static String lastDirectory = ""; private static Thread versionChecker = new Thread() { @@ -500,6 +502,7 @@ public class BytecodeViewer { } public static void main(String[] args) { + getBCVDirectory(); SecurityManager sm = new SecurityManager() { @Override public void checkExec(String cmd) {