Skip to content

Commit

Permalink
version bump for ksp 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hashashin committed May 26, 2017
1 parent 6f80c28 commit 2a209c8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions notes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]
[assembly: AssemblyVersion("0.14.1.0")]
[assembly: AssemblyFileVersion("0.14.1.0")]
6 changes: 3 additions & 3 deletions notes/notes.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -------------------------------------------------------------------------------------------------
// notes.cs 0.14
// notes.cs 0.14.1
//
// Simple KSP plugin to take notes ingame.
// Copyright (C) 2016 Iván Atienza
Expand Down Expand Up @@ -92,7 +92,7 @@ public class Notes : MonoBehaviour

// true to show the notes list window, false to hide.
private bool _showList;

// The reload icon texture.
private WWW _reloadIconTex;

Expand Down Expand Up @@ -294,7 +294,7 @@ public void GetLogInfo()
diff.Seconds.ToString("00"));
string _situation = Vessel.GetSituationString(FlightGlobals.ActiveVessel);
_vesselInfo =
string.Format("\n{0}\n{1} --- Year: {2} Day: {3} Time: {4}:{5:00}:{6:00}\n" + "MET: {7} --- Status: {8}\n{0}\n",
string.Format("\n{0}\n{1} --- Year: {2} Day: {3} Time: {4}:{5:00}:{6:00}\n" + "MET: {7} --- Status: {8}\n{0}\n",
_separator, _vesselName, _ryears, _rdays, _hours, _minutes, _seconds, _formatted, _situation);
}

Expand Down
7 changes: 3 additions & 4 deletions notes/notes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,13 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Managed\Assembly-CSharp.dll</HintPath>
<Reference Include="Assembly-CSharp">
<HintPath>Q:\Kerbal Space Program\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Managed\UnityEngine.dll</HintPath>
<HintPath>Q:\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion notesRPM/notesRPM.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -------------------------------------------------------------------------------------------------
// notesRPM.cs 0.1
// notesRPM.cs 0.2
//
// Simple KSP plugin to take notes ingame.
// Copyright (C) 2016 Iván Atienza
Expand Down
12 changes: 7 additions & 5 deletions notesRPM/notesRPM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Q:\Kerbal Space Program\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Assembly-CSharp">
<HintPath>U:\Kerbal Space Program\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>U:\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Q:\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 2a209c8

Please sign in to comment.