minor fixes
* fixed a few typos * fixed window is resiable to 0x0 * * formating work work
This commit is contained in:
		@ -180,6 +180,8 @@ public class Main extends Application {
 | 
			
		||||
			
 | 
			
		||||
			scene = new Scene(pane); // create new scene, append pane to scene
 | 
			
		||||
			scene.getStylesheets().add(Main.class.getResource("/css/MainWindows.css").toExternalForm());
 | 
			
		||||
			primaryStage.setMinWidth(265.00);
 | 
			
		||||
			primaryStage.setMinHeight(425.00);
 | 
			
		||||
			primaryStage.setScene(scene); // append scene to stage
 | 
			
		||||
			primaryStage.show(); // show stage
 | 
			
		||||
			} catch (IOException e) {
 | 
			
		||||
 | 
			
		||||
@ -33,9 +33,8 @@ import javafx.application.Platform;
 | 
			
		||||
 | 
			
		||||
public class playGame extends Thread{
 | 
			
		||||
 | 
			
		||||
	MainWindowController mainWindowController;
 | 
			
		||||
	DBController dbController;
 | 
			
		||||
	@SuppressWarnings("unused")
 | 
			
		||||
	private MainWindowController mainWindowController;
 | 
			
		||||
	private DBController dbController;
 | 
			
		||||
	private static final Logger LOGGER = LogManager.getLogger(playGame.class.getName());
 | 
			
		||||
	
 | 
			
		||||
	public playGame(MainWindowController m, com.cemu_UI.controller.DBController db) {
 | 
			
		||||
@ -59,7 +58,6 @@ public class playGame extends Thread{
 | 
			
		||||
		});
 | 
			
		||||
    	startTime = System.currentTimeMillis();
 | 
			
		||||
		try {
 | 
			
		||||
			
 | 
			
		||||
			if (System.getProperty("os.name").equals("Linux")) {
 | 
			
		||||
				if(mainWindowController.isFullscreen()){
 | 
			
		||||
					p = new ProcessBuilder("wine", cemuBin, "-f", "-g", gameExec).start();
 | 
			
		||||
@ -74,7 +72,7 @@ public class playGame extends Thread{
 | 
			
		||||
				}
 | 
			
		||||
			}		
 | 
			
		||||
			
 | 
			
		||||
			p.waitFor();
 | 
			
		||||
			p.waitFor(); // wait until cemu is closed so we can calculate the played time
 | 
			
		||||
			endTime = System.currentTimeMillis();
 | 
			
		||||
    		timePlayedNow = (int)  Math.floor(((endTime - startTime)/1000/60));   			
 | 
			
		||||
    		timePlayed = Integer.parseInt(dbController.getTotalPlaytime(selectedGameTitleID))+timePlayedNow;
 | 
			
		||||
@ -99,7 +97,7 @@ public class playGame extends Thread{
 | 
			
		||||
			}
 | 
			
		||||
    		
 | 
			
		||||
		} catch (IOException | InterruptedException e) {
 | 
			
		||||
			e.printStackTrace();
 | 
			
		||||
			LOGGER.error(e);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -90,7 +90,7 @@ public class DBController {
 | 
			
		||||
			connection = DriverManager.getConnection("jdbc:sqlite:" + DB_PATH_localRoms);
 | 
			
		||||
			connection.setAutoCommit(false); // AutoCommit to false -> manual commit is active
 | 
			
		||||
		} catch (SQLException e) {
 | 
			
		||||
			// if the error message is "out of memory", it probably means no database file is found
 | 
			
		||||
			// if the error message is "out of memory", probably no database file is found
 | 
			
		||||
			LOGGER.error("error while loading the ROM database", e);
 | 
			
		||||
		}
 | 
			
		||||
		LOGGER.info("ROM database loaded successfull");
 | 
			
		||||
 | 
			
		||||
@ -18,7 +18,7 @@
 | 
			
		||||
<?import javafx.scene.text.Font?>
 | 
			
		||||
<?import javafx.scene.text.TextFlow?>
 | 
			
		||||
 | 
			
		||||
<AnchorPane fx:id="mainAnchorPane" prefHeight="600.0" prefWidth="904.0" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.cemu_UI.application.MainWindowController">
 | 
			
		||||
<AnchorPane fx:id="mainAnchorPane" minHeight="405.0" minWidth="260.0" prefHeight="600.0" prefWidth="904.0" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.cemu_UI.application.MainWindowController">
 | 
			
		||||
   <children>
 | 
			
		||||
      <ScrollPane fx:id="mainScrollPane" fitToWidth="true" layoutY="38.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="38.0">
 | 
			
		||||
         <content>
 | 
			
		||||
 | 
			
		||||
@ -33,7 +33,7 @@ timeColumn = time
 | 
			
		||||
 | 
			
		||||
# Strings
 | 
			
		||||
editHeadingText = edit
 | 
			
		||||
editBodyText = You can edit the tile and rom/cover path.
 | 
			
		||||
editBodyText = You can edit the tile and ROM/cover path.
 | 
			
		||||
removeHeadingText = remove
 | 
			
		||||
removeBodyText = Are you sure you want to delete
 | 
			
		||||
addUpdateHeadingText = update
 | 
			
		||||
@ -49,15 +49,15 @@ aboutBtnHeadingText = cemu_UI
 | 
			
		||||
aboutBtnBodyText = This Application is made with free Software\nand licensed under the terms of GNU GPL 3.\n\nwww.kellerkinder.xyz
 | 
			
		||||
 | 
			
		||||
cloudSyncWaringHeadingText = activate cloud savegame sync (beta)
 | 
			
		||||
cloudSyncWaringBodyText = WARNING this is a completly WIP cloud save integration,\nit's NOT recomended to use this!!\n\nUse it on your own risk and backup everthing before!
 | 
			
		||||
cloudSyncWaringBodyText = WARNING this is a completely WIP cloud save integration,\nit's NOT recommended to use this!!\n\nUse it on your own risk and backup everything before!
 | 
			
		||||
 | 
			
		||||
cloudSyncErrorHeadingText = Error while initializing cloud sync!
 | 
			
		||||
cloudSyncErrorBodyText = There was some truble while initializing cloud sync.\nPlease upload the app.log (which can be found in the cemu_UI directory)\nto \"https://github.com/Seil0/cemu_UI/issues\" so we can fix this.
 | 
			
		||||
cloudSyncErrorBodyText = There was some trouble while initializing cloud sync.\nPlease upload the app.log (which can be found in the cemu_UI directory)\nto \"https://github.com/Seil0/cemu_UI/issues\" so we can fix this.
 | 
			
		||||
 | 
			
		||||
addGameBtnHeadingText = add a new game to cemu_UI
 | 
			
		||||
addGameBtnBodyText = 
 | 
			
		||||
addBtnReturnErrorHeadingText = Error while adding a new Game!
 | 
			
		||||
addBtnReturnErrorBodyText = There was some truble adding your game.\nOne of the needed values was empty, please try again to add your game.
 | 
			
		||||
addBtnReturnErrorBodyText = There was some trouble adding your game.\nOne of the needed values was empty, please try again to add your game.
 | 
			
		||||
lastPlayed = Last played, 
 | 
			
		||||
today = today
 | 
			
		||||
yesterday = yesterday
 | 
			
		||||
@ -82,6 +82,6 @@ titleID = title ID
 | 
			
		||||
romPath = ROM path
 | 
			
		||||
coverPath = cover path
 | 
			
		||||
editGameDialogHeadingTextError = Error while adding a new Game!
 | 
			
		||||
editGameDialogBodyTextError = There was some truble adding your game.\nOne of the needed values was empty, please try again to add your game.
 | 
			
		||||
editGameDialogBodyTextError = There was some trouble adding your game.\nOne of the needed values was empty, please try again to add your game.
 | 
			
		||||
editGameDialogSelectPathBtn = select .rpx file
 | 
			
		||||
editGameDialogSelectCoverBtn = select cover file
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user