Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Commit

Permalink
Revert "Version Bump; Better menu;"
Browse files Browse the repository at this point in the history
This reverts commit 0164bde.
  • Loading branch information
goldbattle committed Apr 1, 2013
1 parent 0164bde commit a8134a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre6"/>
<classpathentry kind="lib" path="lib/json-simple-1.1.1.jar">
<attributes>
<attribute name="javadoc_location" value="http://alex-public-doc.s3.amazonaws.com/json_simple-1.1"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="output" path="bin"/>
</classpath>
4 changes: 2 additions & 2 deletions src/net/soartex/texture_patcher/Texture_Patcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public final class Texture_Patcher implements Runnable {

// Program variables.

protected final static float VERSION = 1.2F;
protected final static float VERSION = 1.1F;
protected static boolean debug = false;

protected final Preferences prefsnode = Preferences.userNodeForPackage(getClass());
Expand Down Expand Up @@ -267,7 +267,7 @@ else if (!debug) {
for(int i = 0; i < branchUrl.size(); i++){
possibleValues[i] = branchUrl.get(i)[0];
}
String selectedValue = (String) JOptionPane.showInputDialog(null, "Please Select a Mod Branch", "Select A Branch", JOptionPane.PLAIN_MESSAGE, null, possibleValues, possibleValues[possibleValues.length-1]);
String selectedValue = (String) JOptionPane.showInputDialog(null, "Mod Branch", "Branch", JOptionPane.INFORMATION_MESSAGE, null, possibleValues, possibleValues[possibleValues.length-1]);

// If cancel or exit is pressed the return value is null. Therefor exit the program
if(selectedValue==null){
Expand Down

0 comments on commit a8134a5

Please sign in to comment.