Skip to content

Commit d571ab8

Browse files
authored
Merge pull request #31 from Sigma88/Development
Sigma Binary v1.6.3
2 parents cf765db + 14732ec commit d571ab8

File tree

8 files changed

+27
-23
lines changed

8 files changed

+27
-23
lines changed

Changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
**v1.6.3**
2+
3+
- Updated to KSP 1.3 and Kopernicus 1.3.0-1
4+
5+
16
**v1.6.2**
27

38
- Updated to KSP 1.2.2 and Kopernicus 1.2.2-1
0 Bytes
Binary file not shown.

GameData/Sigma/Binary/Sigma-Binary.version

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
{
1414
"MAJOR": 1,
1515
"MINOR": 6,
16-
"PATCH": 2,
16+
"PATCH": 3,
1717
"BUILD": 0
1818
},
1919
"KSP_VERSION":
2020
{
2121
"MAJOR": 1,
22-
"MINOR": 2,
23-
"PATCH": 2
22+
"MINOR": 3,
23+
"PATCH": 0
2424
}
2525
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**This KSP mod will help you create binary systems.**
44

55

6-
KSP Forum Thread: http://forum.kerbalspaceprogram.com/threads/127820
6+
KSP Forum Thread: http://forum.kerbalspaceprogram.com/index.php?/topic/115114-0/
77

88
Download Latest Release: https://github.com/Sigma88/Sigma-Binary/releases/latest
99

0 Bytes
Binary file not shown.

[Source]/SigmaBinary/PeriodFixer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ void Start()
2525
}
2626
}
2727
}
28-

[Source]/SigmaBinary/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
[assembly: KSPAssembly("SigmaBinary", 1, 0)]
1212
[assembly: KSPAssemblyDependency("Kopernicus", 1, 0)]
1313
[assembly: AssemblyVersion("1.0.0")]
14-

[Source]/SigmaBinary/SigmaBinary.csproj

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,41 +30,42 @@
3030
<ErrorReport>prompt</ErrorReport>
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
33+
<ItemGroup>
34+
<Compile Include="MapViewFixer.cs" />
35+
<Compile Include="Properties\AssemblyInfo.cs" />
36+
<Compile Include="SigmaBinaryLoader.cs" />
37+
<Compile Include="SigmaBinary.cs" />
38+
<Compile Include="ArchivesFixer.cs" />
39+
<Compile Include="KerbinFixer.cs" />
40+
<Compile Include="PeriodFixer.cs" />
41+
<Compile Include="LateFixes.cs" />
42+
</ItemGroup>
3343
<ItemGroup>
3444
<Reference Include="Assembly-CSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
3545
<SpecificVersion>False</SpecificVersion>
36-
<HintPath>..\KerbalSpaceProgram\KSP_Data\Managed\Assembly-CSharp.dll</HintPath>
46+
<HintPath>..\..\..\[References]\KerbalSpaceProgram\Assembly-CSharp.dll</HintPath>
3747
</Reference>
3848
<Reference Include="Kopernicus, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
3949
<SpecificVersion>False</SpecificVersion>
40-
<HintPath>..\Kopernicus\Kopernicus.dll</HintPath>
50+
<HintPath>..\..\..\[References]\Kopernicus\Kopernicus.dll</HintPath>
4151
</Reference>
4252
<Reference Include="Kopernicus.Components, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
4353
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\Kopernicus\Kopernicus.Components.dll</HintPath>
54+
<HintPath>..\..\..\[References]\Kopernicus\Kopernicus.Components.dll</HintPath>
4555
</Reference>
4656
<Reference Include="Kopernicus.OnDemand, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
4757
<SpecificVersion>False</SpecificVersion>
48-
<HintPath>..\Kopernicus\Kopernicus.OnDemand.dll</HintPath>
58+
<HintPath>..\..\..\[References]\Kopernicus\Kopernicus.OnDemand.dll</HintPath>
4959
</Reference>
50-
<Reference Include="Kopernicus.Parser">
51-
<HintPath>..\Kopernicus\Kopernicus.Parser.dll</HintPath>
60+
<Reference Include="Kopernicus.Parser, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
61+
<SpecificVersion>False</SpecificVersion>
62+
<HintPath>..\..\..\[References]\Kopernicus\Kopernicus.Parser.dll</HintPath>
5263
</Reference>
5364
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
5465
<SpecificVersion>False</SpecificVersion>
55-
<HintPath>..\KerbalSpaceProgram\KSP_Data\Managed\UnityEngine.dll</HintPath>
66+
<HintPath>..\..\..\[References]\KerbalSpaceProgram\UnityEngine.dll</HintPath>
5667
</Reference>
5768
</ItemGroup>
58-
<ItemGroup>
59-
<Compile Include="MapViewFixer.cs" />
60-
<Compile Include="Properties\AssemblyInfo.cs" />
61-
<Compile Include="SigmaBinaryLoader.cs" />
62-
<Compile Include="SigmaBinary.cs" />
63-
<Compile Include="ArchivesFixer.cs" />
64-
<Compile Include="KerbinFixer.cs" />
65-
<Compile Include="PeriodFixer.cs" />
66-
<Compile Include="LateFixes.cs" />
67-
</ItemGroup>
6869
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6970
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7071
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)