Skip to content

Commit

Permalink
Merge pull request #17 from Li0n-0/DEV
Browse files Browse the repository at this point in the history
1.10
  • Loading branch information
Li0n-0 committed Oct 19, 2017
2 parents 1a011d8 + d08bbe1 commit 2df750b
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 76 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -42,4 +42,5 @@
*.log
PartDatabase.cfg
KSP/

*.userprefs
Source/obj/
Binary file modified GameData/CrewLight/CrewLight.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions GameData/CrewLight/CrewLight.version
Expand Up @@ -5,26 +5,26 @@
"VERSION":
{
"MAJOR":1,
"MINOR":9,
"MINOR":10,
"PATCH":0,
"BUILD":0
},
"KSP_VERSION":
{
"MAJOR":1,
"MINOR":3,
"PATCH":0
"PATCH":1
},
"KSP_VERSION_MIN":
{
"MAJOR":1,
"MINOR":3,
"PATCH":0
"PATCH":1
},
"KSP_VERSION_MAX":
{
"MAJOR":1,
"MINOR":3,
"PATCH":0
"PATCH":1
}
}
39 changes: 13 additions & 26 deletions Source/CrewLight.csproj
Expand Up @@ -13,7 +13,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\GitHub\CrewLight\GameData\CrewLight</OutputPath>
<OutputPath>..\GameData\CrewLight</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -22,49 +22,36 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\GitHub\CrewLight\GameData\CrewLight</OutputPath>
<OutputPath>..\GameData\CrewLight</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Assembly-CSharp">
<HintPath>..\..\GitHub\CrewLight\KSP\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
<HintPath>..\KSP\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\GitHub\CrewLight\KSP\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
<HintPath>..\KSP\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\..\GitHub\CrewLight\KSP\KSP_x64_Data\Managed\UnityEngine.UI.dll</HintPath>
<HintPath>..\KSP\KSP_x64_Data\Managed\UnityEngine.UI.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="..\..\GitHub\CrewLight\Source\DisableLightAG.cs">
<Link>DisableLightAG.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\SwitchLight.cs">
<Link>SwitchLight.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\CLSettings.cs">
<Link>CLSettings.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\LightDirector.cs">
<Link>LightDirector.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\SunLight.cs">
<Link>SunLight.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\MorseLight.cs">
<Link>MorseLight.cs</Link>
</Compile>
<Compile Include="..\..\GitHub\CrewLight\Source\ModuleLightEVAToggle.cs">
<Link>ModuleLightEVAToggle.cs</Link>
</Compile>
<Compile Include="CLSettings.cs" />
<Compile Include="DisableLightAG.cs" />
<Compile Include="LightDirector.cs" />
<Compile Include="ModuleBeaconLightEngine.cs" />
<Compile Include="ModuleLightEVAToggle.cs" />
<Compile Include="MorseLight.cs" />
<Compile Include="SunLight.cs" />
<Compile Include="SwitchLight.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
24 changes: 0 additions & 24 deletions Source/CrewLight.userprefs

This file was deleted.

2 changes: 1 addition & 1 deletion Source/ModuleBeaconLightEngine.cs
Expand Up @@ -8,7 +8,7 @@ public class ModuleBeaconLightEngine : PartModule
private PartModule navLight;
private bool isOn = false;

public void Start ()
public override void OnStart (StartState state)
{
if (! HighLogic.LoadedSceneIsFlight || ! CLSettings.beaconOnEngine) {
Destroy (this);
Expand Down
12 changes: 0 additions & 12 deletions Source/Properties/Settings.cs

This file was deleted.

8 changes: 0 additions & 8 deletions Source/TODO.txt

This file was deleted.

0 comments on commit 2df750b

Please sign in to comment.