Skip to content

Commit

Permalink
1.5.2
Browse files Browse the repository at this point in the history
-Recompile for KSP 1.4.2
-Recompile of Station DMagic Orbital Science plugin to version 1.3.12
-Recompile of Station DMModuleScienceAnimateGeneric plugin to version
0.19
-Recompile of Station Science plugin to version 2.4.1
  • Loading branch information
Xarun committed Apr 14, 2018
1 parent 6840335 commit 02fa309
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions source/AutomatedScienceSampler/AutomatedScienceSampler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public AutomatedScienceSampler()
displayName = "Automated Science Sampler";
settingsUIName = "AutomatedScienceSampler";
tooltip = "Use left click to turn AutomatedScienceSampler on/off.\n Use shift+left click to open the settings menu.";
requiresUtilities = new Version(1, 5, 1);
requiresUtilities = new Version(1, 5, 2);
ToolbarBase.instance.Add(this);
LoadSettings("AutomatedScienceSampler", "Settings");
Log("Init done!");
Expand Down Expand Up @@ -129,7 +129,7 @@ private void GetCraftSettings()
protected override void OnUIElemntInit(UIData uiWindow)
{
var prefabWindow = uiWindow.gameObject.transform as RectTransform;
uiContent = prefabWindow.FindChild("Content");
uiContent = prefabWindow.Find("Content");
UpdateUIVisuals();
InitToggle(uiContent, "DropOutOfWarp", settings.dropOutOfWarp, OnDropOutOfWarpChange);
InitToggle(uiContent, "UsePerCraftSettings", settings.perCraftSetting, OnPerCraftSettingChange);
Expand Down
2 changes: 1 addition & 1 deletion source/AutomatedScienceSampler/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.3.4")]
[assembly: AssemblyVersion("1.3.5")]
//[assembly: AssemblyFileVersion("0.26.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.3.4")]
[assembly: AssemblyVersion("1.3.5")]
//[assembly: AssemblyFileVersion("0.26.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.3.4")]
[assembly: AssemblyVersion("1.3.5")]
//[assembly: AssemblyFileVersion("0.26.1.0")]
4 changes: 2 additions & 2 deletions source/Plugins/Station Science/Activator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public bool CanRunExperiment(ModuleScienceExperiment baseExperiment, float curre
Log(currentExperiment.experimentID, ": StationExperiment didn't start yet! You might want to start it manually!");
return false;
}
if (StationExperiment.checkBoring(FlightGlobals.ActiveVessel, false))
if (StationExperiment.CheckBoring(FlightGlobals.ActiveVessel, false))
{
Log(currentExperiment.experimentID, ": StationExperiment says this location is boring!");
return false;
}
if (!currentExperiment.finished() && !isActive)
if (!currentExperiment.Finished() && !isActive)
{
Log(currentExperiment.experimentID, ": StationExperiment isn't finished yet!");
return false;
Expand Down
2 changes: 1 addition & 1 deletion source/Plugins/Station Science/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.3.4")]
[assembly: AssemblyVersion("1.3.5")]
//[assembly: AssemblyFileVersion("0.26.1.0")]

0 comments on commit 02fa309

Please sign in to comment.