Skip to content

Commit

Permalink
Merge 1.1.0.0 to master
Browse files Browse the repository at this point in the history
  • Loading branch information
TriggerAu committed Oct 15, 2014
2 parents 183bd9a + 6e32751 commit a36588e
Show file tree
Hide file tree
Showing 16 changed files with 835 additions and 47 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions PluginFiles/ReadMe-TransferWindowPlanner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ LICENSE
This work is licensed under an MIT license as outlined at the OSI site. Visit the documentation site for more details and Attribution

VERSION HISTORY
Version 1.1.0.0 - KSP Version: 0.25.0
- Added Ejection Burn Details and fiddle Start Date calcs
- Added KAC Alarm Integration - Requires at least KAC 3.0.0.5 (Issue #16)

Version 1.0.1.0 - KSP Version: 0.24.2
- Fixed Framerate Issue (Issue #17)
- Updated links and version code
Expand Down
4 changes: 2 additions & 2 deletions TransferWindowPlanner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
4 changes: 4 additions & 0 deletions TransferWindowPlanner/Resources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ internal class Resources

internal static Texture2D btnDropDown = new Texture2D(10, 10, TextureFormat.ARGB32, false);
internal static Texture2D btnCopy = new Texture2D(16, 16, TextureFormat.ARGB32, false);
internal static Texture2D btnKAC = new Texture2D(16, 16, TextureFormat.ARGB32, false);
internal static Texture2D btnInfo = new Texture2D(16, 16, TextureFormat.ARGB32, false);
internal static Texture2D btnReset = new Texture2D(16, 16, TextureFormat.ARGB32, false);

internal static Texture2D texBox = new Texture2D(9, 9, TextureFormat.ARGB32, false);
internal static Texture2D texBoxUnity = new Texture2D(9, 9, TextureFormat.ARGB32, false);
Expand Down Expand Up @@ -65,7 +67,9 @@ internal static void LoadTextures()

LoadImageFromFile(ref btnDropDown, "img_DropDown.png");
LoadImageFromFile(ref btnCopy, "img_buttonCopy.png");
LoadImageFromFile(ref btnKAC, "img_buttonKAC.png");
LoadImageFromFile(ref btnInfo, "img_fa-info-circle.png");
LoadImageFromFile(ref btnReset, "img_fa-recycle.png");

LoadImageFromFile(ref texBox, "tex_Box.png");
LoadImageFromFile(ref texBoxUnity, "tex_BoxUnity.png");
Expand Down
12 changes: 6 additions & 6 deletions TransferWindowPlanner/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ internal enum DisplaySkin
[Description("Unity/KSP Buttons")] UnityWKSPButtons
}

[Persistent] internal TWP_KACWrapper.KACWrapper.KACAPI.AlarmActionEnum KACAlarmAction = TWP_KACWrapper.KACWrapper.KACAPI.AlarmActionEnum.KillWarp;
[Persistent] internal Double KACMargin = 24;

[Persistent] internal Boolean ClickThroughProtect_KSC=true;
[Persistent] internal Boolean ClickThroughProtect_Editor=true;
[Persistent] internal Boolean ClickThroughProtect_Flight=true;

//Version Stuff
[Persistent]
internal Boolean DailyVersionCheck = true;
[Persistent] internal Boolean DailyVersionCheck = true;
internal Boolean VersionAttentionFlag = false;
//When did we last check??
internal DateTime VersionCheckDate_Attempt = new DateTime();
[Persistent]
internal String VersionCheckDate_AttemptStored;
[Persistent] internal String VersionCheckDate_AttemptStored;
public String VersionCheckDate_AttemptString { get { return ConvertVersionCheckDateToString(this.VersionCheckDate_Attempt); } }
internal DateTime VersionCheckDate_Success = new DateTime();
[Persistent]
internal String VersionCheckDate_SuccessStored;
[Persistent] internal String VersionCheckDate_SuccessStored;
public String VersionCheckDate_SuccessString { get { return ConvertVersionCheckDateToString(this.VersionCheckDate_Success); } }

public override void OnEncodeToConfigNode()
Expand Down
Loading

0 comments on commit a36588e

Please sign in to comment.