updated deps

updated logger
added repeat mode
added loading playlist from video
added more game types
stop command improved
This commit is contained in:
John Grosh
2017-12-18 10:33:08 -05:00
parent fbbb7bd3a7
commit 6148dc6a89
15 changed files with 354 additions and 100 deletions

View File

@@ -122,8 +122,8 @@ public class FormatUtil {
public static String progressBar(double percent)
{
String str = "";
for(int i=0; i<8; i++)
if(i == (int)(percent*8))
for(int i=0; i<12; i++)
if(i == (int)(percent*12))
str+="\uD83D\uDD18";
else
str+="";