Skip to content

Commit

Permalink
Changed version number to v1.9.0 for upcoming release
Browse files Browse the repository at this point in the history
  • Loading branch information
LMH01 committed Mar 21, 2021
1 parent 8ef186b commit ced359d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down

0 comments on commit ced359d

Please sign in to comment.