Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ PROP
text = MechJeb software not installed.
PAGEHANDLER:NEEDS[MechJeb2]
{
name = MechJebRPM
name = MechJebRPMMenu
method = ShowMenu
pageActiveMethod = PageActive
buttonClickMethod = ClickProcessor
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion GameData/JSI/RasterPropMonitor/RasterPropMonitor.version
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"VERSION": "1.0.2.0",
"KSP_VERSION": "1.12",
"KSP_VERSION_MIN": "1.12.3",
"KSP_VERSION_MAX": "1.12"
"KSP_VERSION_MAX": "'1.12'"
}
File renamed without changes.
2 changes: 1 addition & 1 deletion RasterPropMonitor/Auxiliary modules/JSINumericInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

namespace JSI
{
class JSINumericInput : InternalModule
public class JSINumericInput : InternalModule
{
[SerializeReference] ConfigNodeHolder moduleConfig;

Expand Down
2 changes: 0 additions & 2 deletions RasterPropMonitor/Core/OrbitExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ public static double RelativeInclination_DEG(this Orbit a, Orbit b)
// note strangely, the stock RelativeInclination function is already in degrees
return Orbit.RelativeInclination(a, b);
}
#if false

// These "Swapped" functions translate preexisting Orbit class functions into world
// space. For some reason, Orbit class functions seem to use a coordinate system
Expand Down Expand Up @@ -450,6 +449,5 @@ public static Vector3d DeltaVToManeuverNodeCoordinates(this Orbit o, double UT,
Vector3d.Dot(-o.NormalPlus(UT), dV),
Vector3d.Dot(o.Prograde(UT), dV));
}
#endif
}
}
2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSIGraphingBackground.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace JSI
{
// JSIGraphingBackground provides an editable / configurable way to render
// one or more data in a graphical manner.
class JSIGraphingBackground : InternalModule
public class JSIGraphingBackground : InternalModule
{
[KSPField]
public string layout = null;
Expand Down
2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace JSI
* are displayed with a "ladder" (texture). Strips also provide heading
* information.
************************************************************************/
class JSIHeadsUpDisplay : InternalModule
public class JSIHeadsUpDisplay : InternalModule
{
[KSPField]
public string cameraTransform = string.Empty;
Expand Down
281 changes: 175 additions & 106 deletions RasterPropMonitor/Handlers/JSIMechJeb.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSISASMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private static VesselAutopilot.AutopilotMode ConvertMode(VesselAutopilot.Autopil
}
}

class JSISASMenu : InternalModule
public class JSISASMenu : InternalModule
{
[KSPField]
public string pageTitle = string.Empty;
Expand Down
6 changes: 3 additions & 3 deletions RasterPropMonitor/Handlers/JSIScienceDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
using System.Text;
using UnityEngine;

namespace JSI.Handlers
namespace JSI
{
class ExperimentDetailsMenu : TextMenu
public class ExperimentDetailsMenu : TextMenu
{
public ExperimentDetailsMenu(ModuleScienceExperiment experimentModule)
{
Expand Down Expand Up @@ -103,7 +103,7 @@ static void AddMessageChunk(string message, StringBuilder stringBuilder, ref int
}
}

class JSIScienceDisplay : InternalModule
public class JSIScienceDisplay : InternalModule
{
[KSPField]
public string pageTitle;
Expand Down
Loading