Skip to content

Commit

Permalink
Prep 1.0.14 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
CYBUTEK committed Dec 28, 2014
1 parent c94afd3 commit 27ae516
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Documents/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.0.14.0,
1.0.14.0, 28-12-2014
Added: Career mode that limits the Flight Engineer by:
- Requiring an Engineer Kerbal of any level, or placement of an Engineer Chip or ER-7500 part.
- Tracking station level 3 enables Flight Engineer everywhere.
Expand Down
2 changes: 1 addition & 1 deletion KerbalEngineer/Editor/BuildOverlayVessel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class BuildOverlayVessel : MonoBehaviour
#endregion

#region Properties

public static bool Visible
{
get { return visible; }
Expand Down
2 changes: 1 addition & 1 deletion KerbalEngineer/EngineerGlobals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class EngineerGlobals
/// <summary>
/// Current version of the Kerbal Engineer assembly.
/// </summary>
public const string AssemblyVersion = "1.0.13.1";
public const string AssemblyVersion = "1.0.14";

#endregion

Expand Down
35 changes: 18 additions & 17 deletions KerbalEngineer/VesselSimulator/Stage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,28 @@ namespace KerbalEngineer.VesselSimulator
{
public class Stage
{
public double actualThrust = 0f;
public double actualThrustToWeight = 0f;
public double cost = 0d;
public double deltaV = 0f;
public double inverseTotalDeltaV = 0f;
public double isp = 0f;
public double mass = 0f;
public double maxThrustToWeight = 0f;
public double actualThrust = 0.0;
public double actualThrustToWeight = 0.0;
public double cost = 0.0;
public double deltaV = 0.0;
public double inverseTotalDeltaV = 0.0;
public double isp = 0.0;
public double mass = 0.0;
public double rcsMass = 0.0;
public double maxThrustToWeight = 0.0;
public int number = 0;
public double thrust = 0f;
public double thrustToWeight = 0f;
public double time = 0f;
public double totalCost = 0;
public double totalDeltaV = 0f;
public double totalMass = 0f;
public double totalTime = 0f;
public double thrust = 0.0;
public double thrustToWeight = 0.0;
public double time = 0.0;
public double totalCost = 0.0;
public double totalDeltaV = 0.0;
public double totalMass = 0.0;
public double totalTime = 0.0;
public int totalPartCount = 0;
public int partCount = 0;
public double resourceMass = 0.0;
public double maxThrustTorque = 0f;
public double thrustOffsetAngle = 0f;
public double maxThrustTorque = 0.0;
public double thrustOffsetAngle = 0.0;

public void Dump()
{
Expand Down
Binary file modified Output/KerbalEngineer/KerbalEngineer.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions Output/KerbalEngineer/KerbalEngineer.version
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
{
"MAJOR":1,
"MINOR":0,
"PATCH":13,
"BUILD":1
"PATCH":14,
"BUILD":0
},
"KSP_VERSION":
{
Expand Down

0 comments on commit 27ae516

Please sign in to comment.