Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
11/7/2014 - Fixed the search function.
11/7/2014 - Removed an unused package containing some unused classes.
  • Loading branch information
Konloch committed Nov 8, 2014
1 parent 132d8e6 commit 28a187a
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 677 deletions.
Binary file added BytecodeViewer 2.0.1.jar
Binary file not shown.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,7 @@ Changelog:
11/5/2014 - Made the Show All Strings plugin instant.
11/5/2014 - Kinda added middle mouse button closes tab (only if you click the exit button).
11/5/2014 - Improved the Malicious Code Scanner, also made it instant.
11/5/2014 - Added icons to the program (cheers Fluke).
11/5/2014 - Added icons to the program (cheers Fluke).
--- 2.0.1 ---:
11/7/2014 - Fixed the search function.
11/7/2014 - Removed an unused package containing some unused classes.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0
2.0.1
File renamed without changes.
5 changes: 4 additions & 1 deletion src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@
* 11/5/2014 - Kinda added middle mouse button closes tab (only if you click the exit button).
* 11/5/2014 - Improved the Malicious Code Scanner, also made it instant.
* 11/5/2014 - Added icons to the program (cheers Fluke).
* ----2.0.1-----:
* 11/7/2014 - Fixed the search function.
* 11/7/2014 - Removed an unused package containing some unused classes.
*
* @author Konloch
*
Expand All @@ -196,7 +199,7 @@ public class BytecodeViewer {
private static ArrayList<String> recentFiles = DiskReader.loadArrayList(filesName, false);
private static ArrayList<String> recentPlugins = DiskReader.loadArrayList(pluginsName, false);

public static String version = "2.0";
public static String version = "2.0.1";

public static void main(String[] args) {
iconList = new ArrayList<BufferedImage>();
Expand Down
7 changes: 7 additions & 0 deletions src/the/bytecode/club/bytecodeviewer/gui/ClassViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,13 @@ else if(pane == 1)

if(next) {
for(String s : test) {
if(pane == 0 && !byteCheck.isSelected() ||
pane == 1 && !decompCheck.isSelected())
{
s = s.toLowerCase();
search = search.toLowerCase();
}

if(currentLine == startLine) {
canSearch = true;
} else if(s.contains(search)) {
Expand Down

0 comments on commit 28a187a

Please sign in to comment.