Skip to content

Commit

Permalink
1.4.5 release, includes support for 2.75 meter parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Caskey committed Aug 27, 2018
1 parent c093bcd commit 9ae2d39
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 15 deletions.
Binary file modified GameData/ProceduralFairings/Plugins/ProceduralFairings.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions GameData/ProceduralFairings/ProceduralFairings.version
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"VERSION" : {
"MAJOR" : 1,
"MINOR" : 4,
"PATCH" : 3,
"BUILD" : 4
"PATCH" : 5,
"BUILD" : 5
},
"KSP_VERSION_MIN" : {
"MAJOR" : 1,
"MINOR" : 4,
"PATCH" : 3
"PATCH" : 5
},
"KSP_VERSION_MAX" : {
"MAJOR" : 1,
"MINOR" : 4,
"PATCH" : 3
"PATCH" : 5
}
}
13 changes: 13 additions & 0 deletions GameData/ProceduralFairings/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
=======================================================
ProceduralFairings v1.4.5.5 for KSP 1.4.5 (2018-08-27)
=======================================================

• Recompiled for KSP 1.4.5.
• Added support for 2.75 meter parts

=======================================================
ProceduralFairings v1.4.3.4 for KSP 1.4.3 (2018-05-30)
=======================================================

• Interstage adapter was trying to remove the fairing around any engine connected above it, which was breaking in KSP 1.4

=======================================================
ProceduralFairings v1.4.3-1 for KSP 1.4.3 (2018-05-02)
=======================================================
Expand Down
2 changes: 1 addition & 1 deletion GameData/ProceduralFairings/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Notes:
Credits:

• e-dog for creating the Procedural Fairings mod: https://github.com/e-dog
• rsparkyc for maintaining it the the absence of e-dog: https://github.com/rsparkyc
• rsparkyc for maintaining it the absence of e-dog: https://github.com/rsparkyc

License:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Extract the contents of the **ProceduralFairings** .zip file and then drop the P
### Credits

* **[e-dog][PF:contributor-edog-link]** for creating the Procedural Fairings mod.
* **[rsparkyc][PF:contributor-rsparkyc-link]** for maintaining it the the absence of **e-dog**.
* **[rsparkyc][PF:contributor-rsparkyc-link]** for maintaining it the absence of **e-dog**.

## License

Expand All @@ -45,4 +45,4 @@ You should have received a copy of the license along with this work. If not, vis
[PF:contributor-rsparkyc-link]: https://github.com/rsparkyc
[PF:original-forum-link]: http://forum.kerbalspaceprogram.com/index.php?showtopic=36371
[PF:shield-license]: https://img.shields.io/badge/License-CC--BY%204.0-green.svg
[PF:shield-version]: https://img.shields.io/badge/KSP%20Version-1.4.3.2152-red.svg
[PF:shield-version]: https://img.shields.io/badge/KSP%20Version-1.4.5.2243-green.svg
9 changes: 3 additions & 6 deletions Source/ProceduralFairings/ProceduralFairings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,14 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\Dependencies\1.4.3\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
<HintPath>..\..\..\Dependencies\1.4.5\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="UnityEngine">
<HintPath>..\..\..\Dependencies\1.4.3\UnityEngine.dll</HintPath>
<Private>False</Private>
<HintPath>..\..\..\Dependencies\1.4.5\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\..\..\Dependencies\1.4.3\UnityEngine.UI.dll</HintPath>
<Private>False</Private>
<HintPath>..\..\..\Dependencies\1.4.5\UnityEngine.UI.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand Down
4 changes: 2 additions & 2 deletions Source/ProceduralFairings/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
// • Build Number
// • Revision

[assembly: AssemblyVersion ("1.4.3.2152")]
[assembly: AssemblyFileVersion ("1.4.3.4")]
[assembly: AssemblyVersion ("1.4.5.2243")]
[assembly: AssemblyFileVersion ("1.4.5.5")]

// The KSPAssembly attribute can be used to ensure that the plugin assemblies
// are loaded in the correct order.
Expand Down

0 comments on commit 9ae2d39

Please sign in to comment.