├── .gitattributes ├── .gitignore ├── BumpBuildNumber ├── BumpBuildNumber.cs ├── BumpBuildNumber.csproj └── Properties │ └── AssemblyInfo.cs ├── FAQ.md ├── FormatterTests ├── FormatterTests.cs ├── FormatterTests.csproj └── Properties │ └── AssemblyInfo.cs ├── GameData └── JSI │ ├── Agencies │ ├── Agents.cfg │ ├── JSI.png │ └── JSI_scaled.truecolor │ ├── RPMPodPatches │ ├── BasicMFD │ │ ├── MFD40x20.cfg │ │ ├── PlaneHUD.cfg │ │ ├── graphset.cfg │ │ ├── p0_home40x20.txt │ │ ├── p0_test.txt │ │ ├── p1_landing40x20.txt │ │ ├── p2_orbit40x20.txt │ │ ├── p2_orbit_graphical.txt │ │ ├── p3_target40x20.txt │ │ ├── p4_shipinfo40x20.txt │ │ ├── p5_crew40x20.txt │ │ ├── p6_resources40x20.txt │ │ ├── pa_HUDPFD.txt │ │ ├── pa_PFD.txt │ │ └── pb_graphs.txt │ ├── PatchesMod │ │ ├── kp0110-pod-patch.cfg │ │ ├── kp0110-remade-internal.cfg │ │ ├── orbital-orb-patch.cfg │ │ └── orbital-orb-remade-internal.cfg │ └── PatchesStock │ │ ├── crew-cabin-patch.cfg │ │ ├── cupola-patch.cfg │ │ ├── cupola-remade-internal.cfg │ │ ├── generic3-cockpit-patch.cfg │ │ ├── mk1-inline-patch.nocfg │ │ ├── mk1-inline-remade-internal.nocfg │ │ ├── mk1-patch.cfg │ │ ├── mk1-remade-internal.cfg │ │ ├── mk12pod-patch.cfg │ │ ├── mk12pod-remade-internal.cfg │ │ ├── mk1cockpit-patch.cfg │ │ ├── mk1cockpit-remade-internal.cfg │ │ ├── mk1lander-remade-internal.cfg │ │ ├── mk1landercan-patch.cfg │ │ ├── mk2-sh-cockpit-remade-internal.cfg │ │ ├── mk2-spp-cockpits.cfg │ │ ├── mk2-stock-cockpit-patch.cfg │ │ ├── mk2landercan-patch.cfg │ │ ├── mk2landercan-remade-internal.cfg │ │ └── mk3cockpit-patch.cfg │ └── RasterPropMonitor │ ├── Library │ ├── Components │ │ ├── HUD │ │ │ ├── heading.dds │ │ │ ├── hud-overlay.dds │ │ │ ├── ladder.dds │ │ │ ├── leftscale.dds │ │ │ ├── model.mu │ │ │ ├── planeHUDdiffuse.png │ │ │ ├── rightscale.dds │ │ │ └── screen.png │ │ ├── MFD40x20v2 │ │ │ ├── MFD40x15v2-Diffuse.dds │ │ │ ├── MFD40x15v2-Emissive.dds │ │ │ ├── model.mu │ │ │ ├── screen-emissive.png │ │ │ └── screen.png │ │ └── NavBall │ │ │ ├── HDG.png │ │ │ ├── NavBall.mu │ │ │ ├── NavBall000.dds │ │ │ └── StaticMask.dds │ ├── Fonts │ │ ├── baseFont.png │ │ ├── extraFont1.png │ │ ├── fontDefinition.txt │ │ └── hudfont.png │ ├── Parts │ │ └── ExternalCameraPart │ │ │ ├── external-camera.cfg │ │ │ └── model000.dds │ ├── Props │ │ ├── CockpitHandle │ │ │ ├── OpenHandle.mu │ │ │ ├── OpenHandleDiffuse.dds │ │ │ └── eva-hatch.cfg │ │ ├── IndicatorPanelReplacement │ │ │ ├── model000.dds │ │ │ ├── model001.dds │ │ │ └── prop.cfg │ │ ├── InternalAirlock │ │ │ ├── InternalAirLock.mu │ │ │ ├── InternalAirLockDiffuse.dds │ │ │ └── eva-hatch-with-model.cfg │ │ ├── InternalFlagPlate │ │ │ ├── FlagPlate.mu │ │ │ ├── FlagPlate000.png │ │ │ └── prop.cfg │ │ ├── InternalHatch │ │ │ ├── CubeCollider.mu │ │ │ └── eva-hatch.cfg │ │ ├── SimpleProps │ │ │ ├── ActionGroupLabelledButtons.cfg │ │ │ ├── AxisIndicator.cfg │ │ │ ├── Blinkenlichten.cfg │ │ │ ├── JSISwitchable.cfg │ │ │ ├── SASModeButtons.cfg │ │ │ ├── SquareButtons.cfg │ │ │ └── TrimmerKnobs.cfg │ │ └── SwitchWCover │ │ │ ├── SwitchIcons.tga │ │ │ ├── SwitchWCover.mu │ │ │ ├── Switch_w_cover_Diff.dds │ │ │ └── mechSwitch.cfg │ ├── Sounds │ │ └── buttonbeep.ogg │ └── Textures │ │ ├── bg01.png │ │ ├── graphgrid.png │ │ ├── noscansat.png │ │ ├── nosignal.png │ │ ├── scaleLabels.png │ │ └── scalebar.png │ ├── Plugins │ ├── 3rdPartyLicenses │ │ ├── digital-7-readme.txt │ │ └── repetition-scrolling-ReadMe.txt │ ├── PluginData │ │ └── rpm-config.cfg │ └── reduce-iva-cpu-usage.cfg │ ├── RasterPropMonitor.version │ ├── rasterpropmonitor-font.assetbundle │ ├── rasterpropmonitor-linux.assetbundle │ ├── rasterpropmonitor-osx.assetbundle │ └── rasterpropmonitor-windows.assetbundle ├── LICENSE.md ├── MechJebRPM ├── MechJebRPM.cs ├── MechJebRPM.csproj ├── MechJebRPMButtons.cs └── Properties │ └── AssemblyInfo.cs ├── PLANS.md ├── README.md ├── RasterPropMonitor.sln ├── RasterPropMonitor ├── Auxiliary modules │ ├── InternalCameraTargetHelper.cs │ ├── JSIActionGroupSwitch.cs │ ├── JSICallbackAnimator.cs │ ├── JSIExternalCameraSelector.cs │ ├── JSIFlashModule.cs │ ├── JSIInternalBackgroundNoise.cs │ ├── JSIInternalEVAHatch.cs │ ├── JSIInternalFlagDecal.cs │ ├── JSILabel.cs │ ├── JSINavBall.cs │ ├── JSINumericInput.cs │ ├── JSIPropIDFinder.cs │ ├── JSIPropTextureShift.cs │ ├── JSIRadar.cs │ ├── JSISelectivelyVisibleProp.cs │ ├── JSISetInternalCameraFOV.cs │ ├── JSISwitchableVariableLabel.cs │ ├── JSIThrustReverser.cs │ ├── JSIVariableAnimator.cs │ └── JSIVariableLabel.cs ├── Core │ ├── AeroExtensions.cs │ ├── ButtonHandler.cs │ ├── CelestialBodyExtensions.cs │ ├── CustomVariable.cs │ ├── FlyingCamera.cs │ ├── JSITextMesh.cs │ ├── MappedVariable.cs │ ├── MathExtensions.cs │ ├── MathVariable.cs │ ├── MonitorPage.cs │ ├── OrbitExtensions.cs │ ├── Protractor.cs │ ├── RPMCEvaluators.cs │ ├── RPMCPersistence.cs │ ├── RPMCTriggeredEvent.cs │ ├── RPMGlobals.cs │ ├── RPMVCEvaluators.cs │ ├── RPMVCPerModule.cs │ ├── RPMVCVariableToObject.cs │ ├── RPMVesselComputer.cs │ ├── RasterPropMonitor.cs │ ├── RasterPropMonitorComputer.cs │ ├── ResourceDataStorage.cs │ ├── SIFormatter.cs │ ├── SelectVariable.cs │ ├── StringProcessor.cs │ ├── TextMenu.cs │ ├── TextRenderer.cs │ ├── UtilityFunctions.cs │ ├── VariableHandler.cs │ └── VariableOrNumber.cs ├── Handlers │ ├── IJSIModule.cs │ ├── JSIChatterer.cs │ ├── JSIEngine.cs │ ├── JSIFAR.cs │ ├── JSIFlightLog.cs │ ├── JSIGraphingBackground.cs │ ├── JSIHeadsUpDisplay.cs │ ├── JSIInternalRPMButtons.cs │ ├── JSIKAC.cs │ ├── JSIMechJeb.cs │ ├── JSIOdometer.cs │ ├── JSIOrbitDisplay.cs │ ├── JSIParachute.cs │ ├── JSIPilotAssistant.cs │ ├── JSIPrimaryFlightDisplay.cs │ ├── JSISASMenu.cs │ ├── JSISteerableCamera.cs │ ├── JSITargetMenu.cs │ ├── JSIVariableGraph.cs │ ├── JSIVariablePageTextSwitcher.cs │ ├── KACWrapper.cs │ └── MechJebRPM.cs ├── Properties │ └── AssemblyInfo.cs ├── RasterPropMonitor.csproj └── Shaders │ ├── RPM-CroppedDisplayShader.shader │ ├── RPM-DisplayShader.shader │ ├── RPM-FontShader.shader │ ├── RPM-JSILabel.shader │ ├── RPM-blur.shader │ ├── RPM-grayscale.shader │ ├── RPM-greenscale.shader │ └── RPM-noise.shader ├── SCANsatRPM ├── JSISCANsatRPM.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md └── SCANsatRPM.csproj └── SharedAssemblyInfo.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /BumpBuildNumber/BumpBuildNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/BumpBuildNumber/BumpBuildNumber.cs -------------------------------------------------------------------------------- /BumpBuildNumber/BumpBuildNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/BumpBuildNumber/BumpBuildNumber.csproj -------------------------------------------------------------------------------- /BumpBuildNumber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/BumpBuildNumber/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/FAQ.md -------------------------------------------------------------------------------- /FormatterTests/FormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/FormatterTests/FormatterTests.cs -------------------------------------------------------------------------------- /FormatterTests/FormatterTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/FormatterTests/FormatterTests.csproj -------------------------------------------------------------------------------- /FormatterTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/FormatterTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GameData/JSI/Agencies/Agents.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/Agencies/Agents.cfg -------------------------------------------------------------------------------- /GameData/JSI/Agencies/JSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/Agencies/JSI.png -------------------------------------------------------------------------------- /GameData/JSI/Agencies/JSI_scaled.truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/Agencies/JSI_scaled.truecolor -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/PlaneHUD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/PlaneHUD.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/graphset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/graphset.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p0_home40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p0_home40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p0_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p0_test.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p1_landing40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p1_landing40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit_graphical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p2_orbit_graphical.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p3_target40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p3_target40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p4_shipinfo40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p4_shipinfo40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p5_crew40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p5_crew40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/p6_resources40x20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/p6_resources40x20.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pa_HUDPFD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pa_HUDPFD.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pa_PFD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pa_PFD.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/BasicMFD/pb_graphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/BasicMFD/pb_graphs.txt -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/kp0110-pod-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/kp0110-pod-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/kp0110-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/kp0110-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesMod/orbital-orb-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/crew-cabin-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/crew-cabin-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/cupola-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/cupola-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/cupola-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/cupola-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/generic3-cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/generic3-cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-patch.nocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-patch.nocfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-remade-internal.nocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-inline-remade-internal.nocfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk12pod-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1cockpit-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1lander-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1lander-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk1landercan-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk1landercan-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2-sh-cockpit-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2-sh-cockpit-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2-spp-cockpits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2-spp-cockpits.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2-stock-cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2-stock-cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-remade-internal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk2landercan-remade-internal.cfg -------------------------------------------------------------------------------- /GameData/JSI/RPMPodPatches/PatchesStock/mk3cockpit-patch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RPMPodPatches/PatchesStock/mk3cockpit-patch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/heading.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/heading.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/hud-overlay.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/hud-overlay.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/ladder.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/ladder.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/leftscale.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/leftscale.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/model.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/planeHUDdiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/planeHUDdiffuse.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/rightscale.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/rightscale.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/HUD/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/HUD/screen.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Diffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Diffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Emissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/MFD40x15v2-Emissive.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/model.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen-emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen-emissive.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/MFD40x20v2/screen.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/HDG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/HDG.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/NavBall000.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Components/NavBall/StaticMask.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Components/NavBall/StaticMask.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/baseFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/baseFont.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/extraFont1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/extraFont1.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/fontDefinition.txt: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Δ☊¡¢£¤¥¦§¨©ª«¬☋®¯°±²³´µ¶·¸¹º»¼½¾¿ -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Fonts/hudfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Fonts/hudfont.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/external-camera.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/model000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Parts/ExternalCameraPart/model000.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandle.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandle.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandleDiffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/OpenHandleDiffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/eva-hatch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/CockpitHandle/eva-hatch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model000.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model000.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model001.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/model001.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/prop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/IndicatorPanelReplacement/prop.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLock.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLock.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLockDiffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/InternalAirLockDiffuse.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/eva-hatch-with-model.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalAirlock/eva-hatch-with-model.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/FlagPlate000.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/prop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalFlagPlate/prop.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/CubeCollider.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/CubeCollider.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/eva-hatch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/InternalHatch/eva-hatch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/ActionGroupLabelledButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/ActionGroupLabelledButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/AxisIndicator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/AxisIndicator.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/Blinkenlichten.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/Blinkenlichten.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/JSISwitchable.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/JSISwitchable.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SASModeButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SASModeButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SquareButtons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/SquareButtons.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/TrimmerKnobs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SimpleProps/TrimmerKnobs.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchIcons.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchIcons.tga -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchWCover.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/SwitchWCover.mu -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/Switch_w_cover_Diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/Switch_w_cover_Diff.dds -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/mechSwitch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Props/SwitchWCover/mechSwitch.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Sounds/buttonbeep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Sounds/buttonbeep.ogg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/bg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/bg01.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/graphgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/graphgrid.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/noscansat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/noscansat.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/nosignal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/nosignal.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/scaleLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/scaleLabels.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Library/Textures/scalebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Library/Textures/scalebar.png -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/digital-7-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/digital-7-readme.txt -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/repetition-scrolling-ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/3rdPartyLicenses/repetition-scrolling-ReadMe.txt -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/PluginData/rpm-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/PluginData/rpm-config.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/Plugins/reduce-iva-cpu-usage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/Plugins/reduce-iva-cpu-usage.cfg -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/RasterPropMonitor.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/RasterPropMonitor.version -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-font.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-font.assetbundle -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-linux.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-linux.assetbundle -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-osx.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-osx.assetbundle -------------------------------------------------------------------------------- /GameData/JSI/RasterPropMonitor/rasterpropmonitor-windows.assetbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/GameData/JSI/RasterPropMonitor/rasterpropmonitor-windows.assetbundle -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPM.cs -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPM.csproj -------------------------------------------------------------------------------- /MechJebRPM/MechJebRPMButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/MechJebRPM/MechJebRPMButtons.cs -------------------------------------------------------------------------------- /MechJebRPM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/MechJebRPM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PLANS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/PLANS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/README.md -------------------------------------------------------------------------------- /RasterPropMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor.sln -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/InternalCameraTargetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/InternalCameraTargetHelper.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIActionGroupSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIActionGroupSwitch.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSICallbackAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSICallbackAnimator.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIExternalCameraSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIExternalCameraSelector.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIFlashModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIFlashModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalBackgroundNoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalBackgroundNoise.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalEVAHatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalEVAHatch.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIInternalFlagDecal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIInternalFlagDecal.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSILabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSILabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSINavBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSINavBall.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSINumericInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSINumericInput.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIPropIDFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIPropIDFinder.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIPropTextureShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIPropTextureShift.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIRadar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIRadar.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISelectivelyVisibleProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISelectivelyVisibleProp.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISetInternalCameraFOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISetInternalCameraFOV.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSISwitchableVariableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSISwitchableVariableLabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIThrustReverser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIThrustReverser.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIVariableAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIVariableAnimator.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Auxiliary modules/JSIVariableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Auxiliary modules/JSIVariableLabel.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/AeroExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/AeroExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/ButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/ButtonHandler.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/CelestialBodyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/CelestialBodyExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/CustomVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/CustomVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/FlyingCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/FlyingCamera.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/JSITextMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/JSITextMesh.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MappedVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MappedVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MathExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MathVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MathVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/MonitorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/MonitorPage.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/OrbitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/OrbitExtensions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/Protractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/Protractor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCEvaluators.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCPersistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCPersistence.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMCTriggeredEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMCTriggeredEvent.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMGlobals.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVCEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVCEvaluators.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVCPerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVCPerModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVCVariableToObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVCVariableToObject.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RPMVesselComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RPMVesselComputer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RasterPropMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RasterPropMonitor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/RasterPropMonitorComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/RasterPropMonitorComputer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/ResourceDataStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/ResourceDataStorage.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/SIFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/SIFormatter.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/SelectVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/SelectVariable.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/StringProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/StringProcessor.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/TextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/TextMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/TextRenderer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/UtilityFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/UtilityFunctions.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VariableHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VariableHandler.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Core/VariableOrNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Core/VariableOrNumber.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/IJSIModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/IJSIModule.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIChatterer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIChatterer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIEngine.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIFAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIFAR.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIFlightLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIFlightLog.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIGraphingBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIGraphingBackground.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIInternalRPMButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIInternalRPMButtons.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIKAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIKAC.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIMechJeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIMechJeb.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIOdometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIOdometer.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIOrbitDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIOrbitDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIParachute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIParachute.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIPilotAssistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIPilotAssistant.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIPrimaryFlightDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIPrimaryFlightDisplay.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSISASMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSISASMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSISteerableCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSISteerableCamera.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSITargetMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSITargetMenu.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIVariableGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIVariableGraph.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/JSIVariablePageTextSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/JSIVariablePageTextSwitcher.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/KACWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/KACWrapper.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Handlers/MechJebRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Handlers/MechJebRPM.cs -------------------------------------------------------------------------------- /RasterPropMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RasterPropMonitor/RasterPropMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/RasterPropMonitor.csproj -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-CroppedDisplayShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-CroppedDisplayShader.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-DisplayShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-DisplayShader.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-FontShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-FontShader.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-JSILabel.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-JSILabel.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-blur.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-blur.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-grayscale.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-grayscale.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-greenscale.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-greenscale.shader -------------------------------------------------------------------------------- /RasterPropMonitor/Shaders/RPM-noise.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/RasterPropMonitor/Shaders/RPM-noise.shader -------------------------------------------------------------------------------- /SCANsatRPM/JSISCANsatRPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/SCANsatRPM/JSISCANsatRPM.cs -------------------------------------------------------------------------------- /SCANsatRPM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/SCANsatRPM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SCANsatRPM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/SCANsatRPM/README.md -------------------------------------------------------------------------------- /SCANsatRPM/SCANsatRPM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/SCANsatRPM/SCANsatRPM.csproj -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mihara/RasterPropMonitor/HEAD/SharedAssemblyInfo.cs --------------------------------------------------------------------------------