├── .gitignore ├── Config ├── CelestialBodies.cfg └── Settings.cfg ├── Icons ├── ps_disabled.png ├── ps_enabled.png └── ps_toolbar.png ├── LICENSE ├── PlanetShine.sln ├── PlanetShine ├── Config.cs ├── Distribution │ └── GameData │ │ └── PlanetShine │ │ ├── ChangeLog.txt │ │ ├── Config │ │ ├── CelestialBodies.cfg │ │ └── Settings.cfg │ │ ├── Icons │ │ ├── ps_disabled.png │ │ ├── ps_enabled.png │ │ └── ps_toolbar.png │ │ ├── LICENSE │ │ └── Plugins │ │ ├── PlanetShine.dll │ │ └── PlanetShine.version ├── Gui │ ├── GuiManager.cs │ └── GuiRenderer.cs ├── LocalDev │ ├── 7za_dir.txt │ ├── dist_dir.txt │ ├── ksp_dir.txt │ ├── mono_exe.txt │ └── pdb2mdb_exe.txt ├── PlanetShine.cs ├── PlanetShine.csproj ├── Properties │ └── AssemblyInfo.cs └── Utils │ ├── CelestialBodyInfo.cs │ ├── Logger.cs │ ├── ToolbarWrapper.cs │ └── Utils.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/CelestialBodies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/Config/CelestialBodies.cfg -------------------------------------------------------------------------------- /Config/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/Config/Settings.cfg -------------------------------------------------------------------------------- /Icons/ps_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/Icons/ps_disabled.png -------------------------------------------------------------------------------- /Icons/ps_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/Icons/ps_enabled.png -------------------------------------------------------------------------------- /Icons/ps_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/Icons/ps_toolbar.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/LICENSE -------------------------------------------------------------------------------- /PlanetShine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine.sln -------------------------------------------------------------------------------- /PlanetShine/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Config.cs -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/ChangeLog.txt -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Config/CelestialBodies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Config/CelestialBodies.cfg -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Config/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Config/Settings.cfg -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_disabled.png -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_enabled.png -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Icons/ps_toolbar.png -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/LICENSE -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Plugins/PlanetShine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Plugins/PlanetShine.dll -------------------------------------------------------------------------------- /PlanetShine/Distribution/GameData/PlanetShine/Plugins/PlanetShine.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Distribution/GameData/PlanetShine/Plugins/PlanetShine.version -------------------------------------------------------------------------------- /PlanetShine/Gui/GuiManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Gui/GuiManager.cs -------------------------------------------------------------------------------- /PlanetShine/Gui/GuiRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Gui/GuiRenderer.cs -------------------------------------------------------------------------------- /PlanetShine/LocalDev/7za_dir.txt: -------------------------------------------------------------------------------- 1 | C:\Program Files\7-Zip -------------------------------------------------------------------------------- /PlanetShine/LocalDev/dist_dir.txt: -------------------------------------------------------------------------------- 1 | G:\KSPBuild\ -------------------------------------------------------------------------------- /PlanetShine/LocalDev/ksp_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/LocalDev/ksp_dir.txt -------------------------------------------------------------------------------- /PlanetShine/LocalDev/mono_exe.txt: -------------------------------------------------------------------------------- 1 | C:\Program Files\Unity\Editor\Data\MonoBleedingEdge\bin\ -------------------------------------------------------------------------------- /PlanetShine/LocalDev/pdb2mdb_exe.txt: -------------------------------------------------------------------------------- 1 | C:\Program Files\Unity\Editor\Data\MonoBleedingEdge\lib\mono\4.5 -------------------------------------------------------------------------------- /PlanetShine/PlanetShine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/PlanetShine.cs -------------------------------------------------------------------------------- /PlanetShine/PlanetShine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/PlanetShine.csproj -------------------------------------------------------------------------------- /PlanetShine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/CelestialBodyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Utils/CelestialBodyInfo.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Utils/Logger.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/ToolbarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Utils/ToolbarWrapper.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/PlanetShine/Utils/Utils.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prestja/ksp-planetshine/HEAD/README.md --------------------------------------------------------------------------------