Skip to content

Commit

Permalink
Changed version number to v4.0.0 for upcoming release
Browse files Browse the repository at this point in the history
  • Loading branch information
LMH01 committed May 28, 2022
1 parent 1f3c3b6 commit 1c36872
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To update the initial backup go to `Backup -> Create backup -> Create new initia
#### WHEN THE GAME IS UPDATED IT MIGHT BE POSSIBLE THAT YOUR MODIFICATIONS TO THE GAME FILES ARE LOST

#### TO COUNTERACT THIS YOU CAN CREATE A MOD RESTORE POINT IN THE BACKUP MENU
## Download: [v3.2.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/download/v3.2.0/MGT2_Mod_Tool_3.2.0.zip)
## Download: [v4.0.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/download/v4.0.0/MGT2_Mod_Tool_3.2.0.zip)
#### Getting started:
- Install Java 8 (if not already installed)
- Download and extract the `.zip` file
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {

sourceCompatibility = 1.8
targetCompatibility = 1.8
project.version = "3.2.0" //remember to change version in main class
project.version = "4.0.0" //remember to change version in main class
archivesBaseName = "MGT2_Mod_Tool"

group = "com.github.lmh01"
Expand Down
4 changes: 2 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v4.0.0
## [v4.0.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/tag/v4.0.0) (Latest Version)

### Important
- **Previously exported mods will not work together with this release**
Expand Down Expand Up @@ -45,7 +45,7 @@
- The description text label should now be correct when adding a new hardware and hardware feature
- Fixed #95 - Many things would fail if more than one empty lines are between two data entries in the game files

## [v3.2.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/tag/v3.2.0) (Latest Version)
## [v3.2.0](https://github.com/LMH01/MGT2_Mod_Tool/releases/tag/v3.2.0)

### New feature
- Platforms can now be marked as available from the start of the game (fr #80)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
public class MadGamesTycoon2ModTool {
public static final OSType OS_TYPE;
private static final Logger LOGGER = LoggerFactory.getLogger(MadGamesTycoon2ModTool.class);
public static final String VERSION = "4.0.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 = "3.2.0";//When this version number has been detected as the newest release version the update available message is held back
public static final String VERSION = "4.0.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 = "4.0.0";//When this version number has been detected as the newest release version the update available message is held back

static {
if (System.getProperty("os.name").contains("Linux")) {
Expand Down

0 comments on commit 1c36872

Please sign in to comment.