diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..3f9dc07 --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,2 @@ +/cloudControllerInstances/ +/application/ diff --git a/bin/application/MainWindowController.class b/bin/application/MainWindowController.class index a53dc71..6c92c94 100644 Binary files a/bin/application/MainWindowController.class and b/bin/application/MainWindowController.class differ diff --git a/bin/cloudControllerInstances/GoogleDriveController.class b/bin/cloudControllerInstances/GoogleDriveController.class index 22eace9..6d29e01 100644 Binary files a/bin/cloudControllerInstances/GoogleDriveController.class and b/bin/cloudControllerInstances/GoogleDriveController.class differ diff --git a/src/application/MainWindowController.java b/src/application/MainWindowController.java index 910e5d3..07fc1f0 100644 --- a/src/application/MainWindowController.java +++ b/src/application/MainWindowController.java @@ -154,7 +154,7 @@ public class MainWindowController { private String selectedGameTitle; private String color; private String version = "0.1.5"; - private String buildNumber = "017"; + private String buildNumber = "019"; private String versionName = "Gusty Garden"; private int xPos = -200; private int yPos = 17; diff --git a/src/cloudControllerInstances/GoogleDriveController.java b/src/cloudControllerInstances/GoogleDriveController.java index 6c7e30d..27a0019 100644 --- a/src/cloudControllerInstances/GoogleDriveController.java +++ b/src/cloudControllerInstances/GoogleDriveController.java @@ -186,10 +186,10 @@ public class GoogleDriveController { //reading all local savegames private void getLocalSavegames() throws IOException { java.io.File dir = new java.io.File(cemuDirectory+"/mlc01/emulatorSave"); - String[] extensions = new String[] { "dat" }; + String[] extensions = new String[] { "dat","sav","bin" }; localSavegames.removeAll(localSavegames); localSavegamesName.removeAll(localSavegamesName); - System.out.println("Getting all .dat files in " + dir.getCanonicalPath()+" including those in subdirectories"); + System.out.println("Getting all dat,sav,bin files in " + dir.getCanonicalPath()+" including those in subdirectories"); List files = (List) FileUtils.listFiles(dir, extensions, true); for (java.io.File file : files) { localSavegamesName.add(file.getParentFile().getName()+"_"+file.getName());