Skip to content

Commit

Permalink
KSP 1.10 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jaros-arion committed Jul 20, 2020
1 parent bdff5fa commit f52f578
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
Binary file modified GameData/ParkingBrake/ParkingBrake.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions GameData/ParkingBrake/ParkingBrake.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@
"VERSION" :
{
"MAJOR" : 0,
"MINOR" : 2,
"MINOR" : 3,
"PATCH" : 0,
"BUILD" : 0
},
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 8,
"MINOR" : 10,
"PATCH" : 0
},
"KSP_VERSION_MIN" :
{
"MAJOR" : 1,
"MINOR" : 8,
"MINOR" : 10,
"PATCH" : 0
},
"KSP_VERSION_MAX" :
{
"MAJOR" : 1,
"MINOR" : 8,
"MINOR" : 10,
"PATCH" : 99
}
}
14 changes: 8 additions & 6 deletions ParkingBrake/ParkingBrake/ParkingBrake.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,20 @@
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.8\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.10\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.8\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.10\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\..\..\..\..\Kerbal Space Program 1.8\KSP_x64_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.10\KSP_x64_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>..\..\..\..\..\Kerbal Space Program 1.8\KSP_x64_Data\Managed\UnityEngine.PhysicsModule.dll</HintPath>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\Kerbal Space Program 1.10\KSP_x64_Data\Managed\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 0 additions & 2 deletions ParkingBrake/ParkingBrake/ParkingBrakeModule.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using KSP.Localization;
using System;
using System.Collections.Generic;
using UnityEngine;

namespace ParkingBrake
Expand Down
2 changes: 1 addition & 1 deletion ParkingBrake/ParkingBrake/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.0.0")]
[assembly: AssemblyVersion("0.3.0.0")]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
KSP mod for stopping sliding of a vessel on a slope.

# Changelog
## Version 0.3.0
- Recompile for KSP 1.10

## Version 0.2.0
- KSP 1.8 compatibility

Expand Down

0 comments on commit f52f578

Please sign in to comment.