Skip to content

Commit

Permalink
Update CC
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisViral committed Nov 27, 2017
1 parent 31c555f commit d104d8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -107,6 +107,7 @@ RealChute UI/
autocopy.bat
*.lnk
*.ini
.vs
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
Expand Down
Binary file modified Output/GameData/RealChute/Plugins/RealChute.dll
Binary file not shown.
3 changes: 2 additions & 1 deletion RealChute/CompatibilityChecker.cs
Expand Up @@ -59,7 +59,7 @@ public static bool IsCompatible()
// Even if you don't lock down functionality, you should return true if your users
// can expect a future update to be available.
//
return Versioning.version_major == 1 && Versioning.version_minor == 3;
return Versioning.version_major == 1 && Versioning.version_minor == 3 && Versioning.Revision >= 1;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand All @@ -80,6 +80,7 @@ public static bool IsUnityCompatible()
}

//Version of the compatibility checker itself.
// ReSharper disable once InconsistentNaming
private static int _version = 6;

public void Start()
Expand Down
2 changes: 1 addition & 1 deletion RealChute/RealChute.csproj
Expand Up @@ -85,7 +85,7 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>xcopy "$(SolutionDir)Output\*" "D:\Games\KSP Modding\*" /D /E /C /R /I /K /Y</PostBuildEvent>
<PostBuildEvent>xcopy "$(SolutionDir)Output\*" "C:\Modding\KSP\*" /D /E /C /R /I /K /Y</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down

0 comments on commit d104d8d

Please sign in to comment.