Skip to content
This repository has been archived by the owner on Oct 11, 2019. It is now read-only.

Commit

Permalink
Hotfix 3.3.1
Browse files Browse the repository at this point in the history
Really tiny fix
  • Loading branch information
Leo40Git committed Dec 17, 2017
1 parent 132b974 commit f91261c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
3.3
3.3.1
Hotfix 3.3.1:
- Really tiny fix
Update 3.3:
- Add "File" -> "Run Game"
Update 3.2:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/leo/cse/frontend/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Main extends JFrame implements ExeLoadListener, ProfileListener {
private static final long serialVersionUID = -5073541927297432013L;

public static final Dimension WINDOW_SIZE = new Dimension(867, 686);
public static final Version VERSION = new Version("3.3");
public static final Version VERSION = new Version("3.3.1");
public static final String UPDATE_CHECK_SITE = "https://raw.githubusercontent.com/Leo40Git/CaveSaveEdit/master/.version";
public static final String DOWNLOAD_SITE = "https://github.com/Leo40Git/CaveSaveEdit/releases/";
public static final Color COLOR_BG = new Color(0, 0, 25);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/leo/cse/frontend/ui/SaveEditorPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ private void runExe() {
Runtime.getRuntime().exec(path + "/Steam/Steam.exe -applaunch 200900");
} catch (IOException e) {
e.printStackTrace();
JOptionPane.showMessageDialog(this, "Could not run game!\nThe following exception occured: " + e,
JOptionPane.showMessageDialog(this, "Could not run game! The following exception occured:\n" + e,
"Could not run game", JOptionPane.ERROR_MESSAGE);
}
} else {
Expand Down

0 comments on commit f91261c

Please sign in to comment.