From 87131c7e8b631dad9f298de4c3291acc8314b88c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 18 Jan 2015 09:48:32 +0900 Subject: [PATCH 1/2] Update version checks for KSP 0.90. --- Plugin/Kethane/Utilities/CompatibilityChecker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugin/Kethane/Utilities/CompatibilityChecker.cs b/Plugin/Kethane/Utilities/CompatibilityChecker.cs index 0fcf0c4..80e380b 100644 --- a/Plugin/Kethane/Utilities/CompatibilityChecker.cs +++ b/Plugin/Kethane/Utilities/CompatibilityChecker.cs @@ -53,7 +53,7 @@ public static bool IsCompatible() \*-----------------------------------------------*/ const int compatibleMajor = 0; - const int compatibleMinor = 25; + const int compatibleMinor = 90; const int compatibleRevision = 0; return (Versioning.version_major == compatibleMajor) && (Versioning.version_minor == compatibleMinor) && (Versioning.Revision == compatibleRevision); @@ -69,7 +69,7 @@ public static bool IsUnityCompatible() | BEGIN IMPLEMENTATION-SPECIFIC EDITS HERE. | \*-----------------------------------------------*/ - return Application.unityVersion == "4.5.2f1"; + return Application.unityVersion == "4.5.5f1"; /*-----------------------------------------------*\ | IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! | From bc64d77c8a08c209a67cefca73f35524305a6ed2 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 18 Jan 2015 09:52:48 +0900 Subject: [PATCH 2/2] Bump Kethane's version. --- Plugin/Kethane/Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/Kethane/Properties/AssemblyInfo.cs b/Plugin/Kethane/Properties/AssemblyInfo.cs index 2f711b0..b328ce8 100644 --- a/Plugin/Kethane/Properties/AssemblyInfo.cs +++ b/Plugin/Kethane/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyInformationalVersion("0.9.2")] +[assembly: AssemblyInformationalVersion("0.9.3")]