Skip to content

Commit

Permalink
2.9.7 released
Browse files Browse the repository at this point in the history
07/02/2015 - Added ajustable font size.
07/05/2015 - Started working on the new Boot Screen.
07/06/2015 - Moved the font size to be under the view menu.
07/06/2015 - Fixed a bug with plugins not being able to grab the
currently viewed class.
07/07/2015 - Started adding enjarify as an optional APK converter
instead of Dex2Jar.
07/07/2015 - Finished the new Boot Screen
07/09/2015 - Fixed a process leak with krakatau decompiler.
07/09/2015 - Finished adding enjarify.
07/09/2015 - Supressed syntax exceptions due to JD-GUI.
07/09/2015 - Fixed refresh on non-refreshable resources.
07/09/2015 - Fixed opening a class and the name is so big, you cannot
close because the [X] does not appear.
07/09/2015 - Added support for smaller screens for the boot screen.
07/16/2015 - Removed the FileFilter classes.
07/16/2015 - Updated the decompiler class to make more sense.
07/16/2015 - Started working on BCV CLI.
07/16/2015 - Finished BCV CLI.
  • Loading branch information
Konloch committed Jul 19, 2015
1 parent 3784629 commit 34de98f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Binary file modified BytecodeViewer 2.9.7.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions install/launch4j_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<lib>w32api/libuser32.a</lib>
<lib>w32api/libadvapi32.a</lib>
<lib>w32api/libshell32.a</lib>
<jar>H:\Repo\BCV\bytecode-viewer\BytecodeViewer 2.9.6.jar</jar>
<jar>H:\Repo\BCV\bytecode-viewer\BytecodeViewer 2.9.7.jar</jar>
<outfile>H:\Repo\BCV\bytecode-viewer\BytecodeViewer.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
Expand All @@ -34,7 +34,7 @@
<runtimeBits>64/32</runtimeBits>
</jre>
<versionInfo>
<fileVersion>0.2.9.6</fileVersion>
<fileVersion>0.2.9.7</fileVersion>
<txtFileVersion>http://the.bytecode.club</txtFileVersion>
<fileDescription>Bytecode Viewer</fileDescription>
<copyright>http://bytecodeviewer.com</copyright>
Expand Down
Binary file not shown.
5 changes: 3 additions & 2 deletions src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ public static void main(String[] args) {
if(previewCopy && !CommandLineInput.containsCommand(args))
showMessage("WARNING: This is a preview/dev copy, you WON'T be alerted when "+version+" is actually out if you use this."+nl+
"Make sure to watch the repo: https://github.com/Konloch/bytecode-viewer for "+version+"'s release");

viewer = new MainViewerGUI();
Settings.loadGUI();

new BootScreen().DO_FIRST_BOOT(args, CommandLineInput.parseCommandLine(args));
} catch (Exception e) {
Expand All @@ -403,8 +406,6 @@ public void run() {
}
});

viewer = new MainViewerGUI();
Settings.loadGUI();
viewer.calledAfterLoad();
resetRecentFilesMenu();

Expand Down

0 comments on commit 34de98f

Please sign in to comment.