Skip to content

Commit 34de98f

Browse files
committed
2.9.7 released
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.
1 parent 3784629 commit 34de98f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

BytecodeViewer 2.9.7.jar

-2 Bytes
Binary file not shown.

install/launch4j_config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<lib>w32api/libuser32.a</lib>
1313
<lib>w32api/libadvapi32.a</lib>
1414
<lib>w32api/libshell32.a</lib>
15-
<jar>H:\Repo\BCV\bytecode-viewer\BytecodeViewer 2.9.6.jar</jar>
15+
<jar>H:\Repo\BCV\bytecode-viewer\BytecodeViewer 2.9.7.jar</jar>
1616
<outfile>H:\Repo\BCV\bytecode-viewer\BytecodeViewer.exe</outfile>
1717
<errTitle></errTitle>
1818
<cmdLine></cmdLine>
@@ -34,7 +34,7 @@
3434
<runtimeBits>64/32</runtimeBits>
3535
</jre>
3636
<versionInfo>
37-
<fileVersion>0.2.9.6</fileVersion>
37+
<fileVersion>0.2.9.7</fileVersion>
3838
<txtFileVersion>http://the.bytecode.club</txtFileVersion>
3939
<fileDescription>Bytecode Viewer</fileDescription>
4040
<copyright>http://bytecodeviewer.com</copyright>
4.96 MB
Binary file not shown.

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,9 @@ public static void main(String[] args) {
384384
if(previewCopy && !CommandLineInput.containsCommand(args))
385385
showMessage("WARNING: This is a preview/dev copy, you WON'T be alerted when "+version+" is actually out if you use this."+nl+
386386
"Make sure to watch the repo: https://github.com/Konloch/bytecode-viewer for "+version+"'s release");
387+
388+
viewer = new MainViewerGUI();
389+
Settings.loadGUI();
387390

388391
new BootScreen().DO_FIRST_BOOT(args, CommandLineInput.parseCommandLine(args));
389392
} catch (Exception e) {
@@ -403,8 +406,6 @@ public void run() {
403406
}
404407
});
405408

406-
viewer = new MainViewerGUI();
407-
Settings.loadGUI();
408409
viewer.calledAfterLoad();
409410
resetRecentFilesMenu();
410411

0 commit comments

Comments
 (0)