diff --git a/CURRENTVERSION b/CURRENTVERSION index 1cc5f65..867e524 100644 --- a/CURRENTVERSION +++ b/CURRENTVERSION @@ -1 +1 @@ -1.1.0 \ No newline at end of file +1.2.0 \ No newline at end of file diff --git a/GoICC Installation Media Creation Script.iss b/GoICC Installation Media Creation Script.iss index 84687a4..ef3dcc1 100644 --- a/GoICC Installation Media Creation Script.iss +++ b/GoICC Installation Media Creation Script.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Guns of Icarus Caster Companion" -#define MyAppVersion "1.1.0" +#define MyAppVersion "1.2.0" #define MyAppPublisher "Cole Manning, RVRX" #define MyAppURL "https://goicc.skyborne.net/" #define MyAppExeName "GoICasterCompanion.exe" diff --git a/build.gradle b/build.gradle index 1ea5171..308605d 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { id 'edu.sc.seis.launch4j' version '2.5.0' } mainClassName = 'goistreamtoolredux.Main' -project.version = '1.1.0' +project.version = '1.2.0' repositories { mavenCentral() @@ -35,7 +35,7 @@ macAppBundle { icon = "app-icon.png" appName = "GoICasterCompanion" volumeName = "GoICC Install" - dmgName = "GoICC v1.1.0" + dmgName = "GoICC v1.2.0" bundleJRE = false // backgroundImage = "doc/macbackground.png" } diff --git a/src/main/java/goistreamtoolredux/App.java b/src/main/java/goistreamtoolredux/App.java index 43a2ae4..a978d0f 100644 --- a/src/main/java/goistreamtoolredux/App.java +++ b/src/main/java/goistreamtoolredux/App.java @@ -28,7 +28,7 @@ public class App extends Application { //current application version. Used for update checking - public static final String version = "1.1.0"; + public static final String version = "1.2.0"; /**The JavaFX application's primary stage. All Scenes are built upon this stage*/ private static Stage primaryStage;