Skip to content

Commit

Permalink
Update versioning and recompile
Browse files Browse the repository at this point in the history
* Update versioning and recompile for KSP 1.3.1
* Adjusted heat shield lossConst and pyrolysisLossFactor to better balance survivability
  • Loading branch information
Starwaster committed Nov 16, 2017
1 parent 981e419 commit 6cebade
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions DeadlyReentry/DeadlyReentry.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RESOURCE_DEFINITION:NEEDS[!RealFuels]
@name = ModuleHeatShield
@reentryConductivity = 0.001
%lossExp = -7500
%lossConst = 1
%lossConst = 0.5
%pyrolysisLossFactor = 6000
reentryConductivity = 0.001
depletedMaxTemp = 1200
Expand Down Expand Up @@ -93,8 +93,8 @@ RESOURCE_DEFINITION:NEEDS[!RealFuels]
{
@name = ModuleHeatShield
@reentryConductivity = 0.001
@lossConst = 1
@pyrolysisLossFactor = 600
@lossConst = 0.5
@pyrolysisLossFactor = 6000
depletedMaxTemp = 1200
}
}
Expand Down Expand Up @@ -1124,7 +1124,7 @@ RESOURCE_DEFINITION:NEEDS[!RealFuels]
name = ModuleHeatShield
ablativeResource = AblativeShielding
lossExp = -7500
lossConst = 1
lossConst = 0.5
pyrolysisLossFactor = 6000
reentryConductivity = 0.001
ablationTempThresh = 500
Expand All @@ -1144,7 +1144,7 @@ RESOURCE_DEFINITION:NEEDS[!RealFuels]
{
%ablativeResource = #$ablative$
%lossExp = -7500
%lossConst = 1
%lossConst = 0.5
%pyrolysisLossFactor = 6000
%reentryConductivity = 0.001
%ablationTempThresh = 500
Expand Down
8 changes: 4 additions & 4 deletions DeadlyReentry/DeadlyReentry.version
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@
{
"MAJOR" : 7,
"MINOR" : 6,
"PATCH" : 1,
"PATCH" : 2,
},

"KSP_VERSION":
{
"MAJOR": 1,
"MINOR": 3,
"PATCH": 0
"PATCH": 1
},

"KSP_VERSION_MIN":
{
"MAJOR": 1,
"MINOR": 3,
"PATCH": 0
"PATCH": 1
},

"KSP_VERSION_MAX":
{
"MAJOR": 1,
"MINOR": 3,
"PATCH": 0
"PATCH": 1
}
}
2 changes: 1 addition & 1 deletion Source/Checkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,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 && Versioning.Revision >= 0;
return Versioning.version_major == 1 && Versioning.version_minor == 3 && Versioning.Revision >= 1;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// 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("7.6.1")]
[assembly: AssemblyVersion("7.6.2")]
//[assembly: AssemblyFileVersion("7.0.*.*")]
[assembly: KSPAssembly("DeadlyReentry", 7, 6)]
//[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]

0 comments on commit 6cebade

Please sign in to comment.