From ced359d532b7ed0c018fd7284623878b2fd15170 Mon Sep 17 00:00:00 2001 From: Louis Date: Sun, 21 Mar 2021 16:41:44 +0100 Subject: [PATCH] Changed version number to v1.9.0 for upcoming release --- README.md | 3 ++- build.gradle | 2 +- .../java/com/github/lmh01/mgt2mt/MadGamesTycoon2ModTool.java | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f95c109..69269b07 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is a little program that can modify some files from Mad Games Tycoon 2. **Because Mad Games Tycoon 2 is in early access, I can't promise that this version will be compatible with every update to come, but when an update makes this tool incompatible I will do my best to make it compatible again.** **WARNING: WHEN THE GAME IS UPDATED IT MIGHT BE POSSIBLE THAT YOUR MODIFICATIONS TO THE GAME FILES ARE LOST** -## Download: [v1.8.3b](https://github.com/LMH01/MGT2_Mod_Tool/releases/download/v1.8.3b/MGT2_Mod_Tool_1.8.3b.zip) +## Download: [v1.9.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/download/v1.9.0/MGT2_Mod_Tool_1.9.0.zip) #### Getting started: - Install Java 8 (if not already installed) - Download and extract the `.zip` file @@ -62,6 +62,7 @@ This is a little program that can modify some files from Mad Games Tycoon 2. - **Settings** - If you wish to not use the automatically detected MGT2 folder you can select a folder manually. - Most spinners are locked and some features do only work on specific conditions to prevent problems. Disable the safety feaatures to circumvent this behaviour. **Do only do so if you know what you are doing! I WILL NOT TAKE ANY RESPONSIBILITY IF YOU BREAK SOMETHING!** + - It is possible to change the language of the tool. The german translations are currently wip. - **The Mad Games Tycoon 2 folder is set automatically** - When launching the application all Steam libraries are searched if they contain Mad Games Tycoon 2. If they don't a prompt is shown where the path can be entered. - **Miscellaneous** diff --git a/build.gradle b/build.gradle index 47bb4bdb..ee9018f6 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ dependencies { sourceCompatibility = 1.8 targetCompatibility = 1.8 -project.version = "1.8.3b" //remember to change version in main class +project.version = "1.9.0" //remember to change version in main class archivesBaseName = "MGT2_Mod_Tool" group = "com.github.lmh01" diff --git a/src/main/java/com/github/lmh01/mgt2mt/MadGamesTycoon2ModTool.java b/src/main/java/com/github/lmh01/mgt2mt/MadGamesTycoon2ModTool.java index b13b012a..74819d7e 100644 --- a/src/main/java/com/github/lmh01/mgt2mt/MadGamesTycoon2ModTool.java +++ b/src/main/java/com/github/lmh01/mgt2mt/MadGamesTycoon2ModTool.java @@ -14,8 +14,8 @@ public class MadGamesTycoon2ModTool { private static final Logger LOGGER = LoggerFactory.getLogger(MadGamesTycoon2ModTool.class); - public static final String VERSION = "1.9.0-dev";//Version numbers that include "dev" are not checked for updates / tool will notify if update is available - public static final String CURRENT_RELEASE_VERSION = "1.8.3b";//When this version number has been detected as the newest release version the update available message is held back + public static final String VERSION = "1.9.0";//Version numbers that include "dev" are not checked for updates / tool will notify if update is available + public static final String CURRENT_RELEASE_VERSION = "1.9.0";//When this version number has been detected as the newest release version the update available message is held back public static void main(String[] args) throws IOException { if(Settings.importSettings()){ LOGGER.info("Settings have been imported.");