diff --git a/DivaBot/DivaBot.jar b/DivaBot/DivaBot.jar
index 2499b4e..385d6fc 100644
Binary files a/DivaBot/DivaBot.jar and b/DivaBot/DivaBot.jar differ
diff --git a/DivaBot/calibration_data.txt b/DivaBot/calibration_data.txt
index 9368541..7848f66 100644
--- a/DivaBot/calibration_data.txt
+++ b/DivaBot/calibration_data.txt
@@ -1,4 +1,4 @@
-471
+470
198
1529
791
diff --git a/DivaBot/config.txt b/DivaBot/config.txt
index b4b74c3..58a13b0 100644
--- a/DivaBot/config.txt
+++ b/DivaBot/config.txt
@@ -1,11 +1,11 @@
DISPLAYDATA -16776961*-13369549*100*Gungsuh*600*90*300*Song Title (Japanese+Romanized)*176*136*~-16776961*-13369549*24*Gulim*400*40*300*Overall Rating|Song Title (Romanized)|FC Count*176*240*
-LAST_HEIGHT 90
+LAST_HEIGHT 40
WIDTH 1127
HEIGHT 765
BACKGROUND -6697729
LAST_TEXT -13369549
-LAST_FONT Gungsuh
-LAST_FONTSIZE 100
+LAST_FONT Gulim
+LAST_FONTSIZE 24
LAST_BACKGROUND -16776961
-LAST_WIDTH 300
+LAST_WIDTH 400
LAST_DELAY 300
diff --git a/DivaBot/src/sig/MyRobot.java b/DivaBot/src/sig/MyRobot.java
index 386e5d2..4119bad 100644
--- a/DivaBot/src/sig/MyRobot.java
+++ b/DivaBot/src/sig/MyRobot.java
@@ -193,13 +193,13 @@ public class MyRobot{
boolean success = false;
do {
username = "";
- enteredValue = JOptionPane.showInputDialog("First time boot!\n\nPlease login on http://www.projectdivar.com and paste your App Authentication Token here.\nThe App Authentication token is used to record your scores and verify who you are! Do not share it with others!!!", "XXXXX-XXXXX-XXXXX");
+ enteredValue = JOptionPane.showInputDialog("First time boot!\n\nPlease login on http://www.projectdivar.com and paste your App Authentication Token here.\nThe App Authentication token is used to record your scores and verify who you are! Do not share it with others!!!", "XXXXX-XXXXX-XXXXX");
if (enteredValue==null) {
System.exit(0);
}
if (!enteredValue.isEmpty()) {
do {
- username = JOptionPane.showInputDialog("Please enter your Project DivaR username:","");
+ username = JOptionPane.showInputDialog("Please enter your Project DivaR username:","");
} while (username.isEmpty());
if (username==null) {
System.exit(0);
@@ -243,7 +243,7 @@ public class MyRobot{
String result = s.hasNext() ? s.next() : "";
System.out.println(result);
if (result.equalsIgnoreCase("\"authentication success!\"")) {
- FileUtils.writetoFile(new String[] {username,authenticationToken,"The App Authentication token is used to record your scores and verify who you are! Do not share it with others!!!"}, "authToken.txt", false);
+ FileUtils.writetoFile(new String[] {username,authenticationToken,"The App Authentication token is used to record your scores and verify who you are! Do not share it with others!!!"}, "authToken.txt", false);
USERNAME=username;
AUTHTOKEN=authenticationToken;
return true;