Skip to content

Commit

Permalink
Merge pull request #282 from taniwha-qf/master
Browse files Browse the repository at this point in the history
Update for KSP 0.90. (Version bumps only.)
  • Loading branch information
Majiir committed Jan 18, 2015
2 parents 0370bfb + bc64d77 commit f4c077a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Plugin/Kethane/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions Plugin/Kethane/Utilities/CompatibilityChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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! |
Expand Down

0 comments on commit f4c077a

Please sign in to comment.