Skip to content

Commit

Permalink
Release version 1.0.7
Browse files Browse the repository at this point in the history
This version includes:
* Commit 09b2c44
* Commit 7d57dff
* Commit 5b8a61b
* Commit 4210aa2
  • Loading branch information
SS111 committed Oct 10, 2013
1 parent cb43f55 commit 4bf7b84
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if (foo==bar) {

#Using my code in your program

If you want to use my code in your program, that's great! I do ask that you **please** give me credit. To start off, your going to need to add [Apache Commons Collections](http://commons.apache.org/proper/commons-collections/), and [Appache Commons IO](http://commons.apache.org/proper/commons-io/) to your build path. Then you can add [my developer jar](../master/dev/midr-1.0.6.jar) to your build path. From there, my "libraries" are pretty straightforward (most of the time...), but I've still included a (poorly written) Javadoc which is avliable [here](http://ss111.github.io/midr-doc/). In addition, below is a basic example of how to find and resolve ID conflicts.
If you want to use my code in your program, that's great! I do ask that you **please** give me credit. To start off, your going to need to add [Apache Commons Collections](http://commons.apache.org/proper/commons-collections/), and [Appache Commons IO](http://commons.apache.org/proper/commons-io/) to your build path. Then you can add [my developer jar](../master/dev/midr-1.0.7.jar) to your build path. From there, my "libraries" are pretty straightforward (most of the time...), but I've still included a (poorly written) Javadoc which is avliable [here](http://ss111.github.io/midr-doc/). In addition, below is a basic example of how to find and resolve ID conflicts.

You will first want to call:

Expand Down
Binary file added dev/midr-1.0.7-javadoc.jar
Binary file not shown.
Binary file added dev/midr-1.0.7.jar
Binary file not shown.
Binary file added dev/midr-sources-1.0.7.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/com/github/ss111/WindowMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void main(String[] args) {
}

System.err.println("");
System.err.println("Usage: java -jar Minecraft.ID.Resolver.v1.0.6.jar ");
System.err.println("Usage: java -jar Minecraft.ID.Resolver.v1.0.7.jar ");
System.err.println(" " + argsParser.getUsage());
System.err.println("");
System.err.println(argsParser.getHelp());
Expand All @@ -99,7 +99,7 @@ public static void main(String[] args) {
}

System.out.println("");
System.out.println("Minecraft ID Resolver v1.0.6 - By SS111");
System.out.println("Minecraft ID Resolver v1.0.7 - By SS111");
System.out.println("Console mode activated.");
System.out.println("");
System.out.print("\rValidating arguments...");
Expand Down Expand Up @@ -306,7 +306,7 @@ private WindowMain() {
private void initialize() {

frmMain = new JFrame();
frmMain.setTitle("Minecraft ID Resolver V1.0.6 - By SS111");
frmMain.setTitle("Minecraft ID Resolver V1.0.7 - By SS111");
frmMain.setBounds(100, 100, 450, 345);
frmMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frmMain.getContentPane().setLayout(new MigLayout("", "[95px][10px][210px,grow][10px][99px]", "[23px][23px][179px][grow][][]"));
Expand Down

0 comments on commit 4bf7b84

Please sign in to comment.