Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-125 committed Sep 10, 2018
1 parent 45c8dbe commit e86f94e
Show file tree
Hide file tree
Showing 23 changed files with 62 additions and 16 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 4 additions & 1 deletion GameData/WildBlueIndustries/000WildBlueTools/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ A KSP mod that provides common functionality for mods by Wild Blue Industries.

Copy the contents of the mod's GameData directory into your GameData folder.

1.57.1
1.57.3
- Fixes Play Mode failing to rename certain files. NOTE: You might need to reset your current play mode. Simply open the WBT app from the Space Center, choose another mode, press OK, and again open the app, selecting your original play mode. Then be sure to restart KSP.

1.57.2
- Fixes issue in WBIModuleResourceHarvester where, if you don't specify any harvest types with harvestType, the harvester will default back to its singular HarvesterType field.
- Fix for OmniStorage resources on the restricted list not being added during flight.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"MAJOR":1,
"MINOR":57,
"PATCH":1
"PATCH":3
},
"KSP_VERSION":
{
Expand Down
2 changes: 1 addition & 1 deletion GameData/WildBlueIndustries/Buffalo/Buffalo.version
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"MAJOR":2,
"MINOR":6,
"PATCH":4
"PATCH":5
},
"KSP_VERSION":
{
Expand Down
4 changes: 4 additions & 0 deletions GameData/WildBlueIndustries/Buffalo/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ If these directories already exist, then delete the existing ones before install

---REVISION HISTORY---

2.6.5
- Fix for Grizzly colliding with extended ladders.
- Fixes Play Mode failing to rename certain files. NOTE: You might need to reset your current play mode. Simply open the WBT app from the Space Center, choose another mode, press OK, and again open the app, selecting your original play mode. Then be sure to restart KSP.

2.6.4
- The Guppy's maximum diving depth can now be upgraded.

Expand Down
2 changes: 1 addition & 1 deletion GameData/WildBlueIndustries/Pathfinder/Pathfinder.version
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"MAJOR":1,
"MINOR":27,
"PATCH":2,
"PATCH":3,
"BUILD":0
},
"KSP_VERSION":
Expand Down
3 changes: 3 additions & 0 deletions GameData/WildBlueIndustries/Pathfinder/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Copy the contents of the mod's GameData directory into your KSP's GameData folde

---REVISION HISTORY---

1.27.3
- Fixes Play Mode failing to rename certain files. NOTE: You might need to reset your current play mode. Simply open the WBT app from the Space Center, choose another mode, press OK, and again open the app, selecting your original play mode. Then be sure to restart KSP.

1.27.2
- Removed MM patch adding GoldStrike drills to every resource harvester part found in the game; it was creating issues.

Expand Down
29 changes: 29 additions & 0 deletions Notes/Pathfinder.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"NAME":"Pathfinder",
"URL":"https://raw.githubusercontent.com/Angel-125/Pathfinder/master/GameData/WildBlueIndustries/Pathfinder/Pathfinder.version",
"DOWNLOAD":"https://github.com/Angel-125/Pathfinder/releases",
"GITHUB":
{
"USERNAME":"Angel-125",
"REPOSITORY":"Pathfinder",
"ALLOW_PRE_RELEASE":false,
},
"VERSION":
{
"MAJOR":1,
"MINOR":27,
"PATCH":3,
"BUILD":0
},
"KSP_VERSION":
{
"MAJOR":1,
"MINOR":4,
"PATCH":5
},
"KSP_VERSION_MIN":{
"MAJOR":1,
"MINOR":4,
"PATCH":0
},
}
1 change: 1 addition & 0 deletions Notes/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes Play Mode failing to rename certain files. NOTE: You might need to reset your current play mode. Simply open the WBT app from the Space Center, choose another mode, press OK, and again open the app, selecting your original play mode. Then be sure to restart KSP.
15 changes: 4 additions & 11 deletions Pathfinder/Habitat/WBIMultipurposeHab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,6 @@ protected void updateDrill()
coreHeat.isEnabled = enableDrill;
}

WBIDrillSwitcher drillSwitcher = this.part.FindModuleImplementing<WBIDrillSwitcher>();
if (drillSwitcher != null)
{
drillSwitcher.enabled = enableDrill;
drillSwitcher.isEnabled = enableDrill;
}

WBIEfficiencyMonitor extractionMonitor = this.part.FindModuleImplementing<WBIEfficiencyMonitor>();
if (extractionMonitor != null)
{
Expand All @@ -233,10 +226,10 @@ protected void updateDrill()
}

//Update the drill
if (enableDrill)
harvester.EnableModule();
else
harvester.DisableModule();
harvester.enabled = enableDrill;
harvester.isEnabled = enableDrill;
if (harvester.IsActivated && !enableDrill)
harvester.StopResourceConverter();

//Setup drill parameters
if (enableDrill)
Expand Down
15 changes: 14 additions & 1 deletion Pathfinder/Pathfinder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,20 @@
xcopy /Y "$(TargetPath)" "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).pdb" "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).dll.mdb" "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).dll" "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Plugins\"</PostBuildEvent>
xcopy /Y "$(TargetDir)$(TargetName).dll" "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Plugins\"

xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\000WildBlueTools\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\000WildBlueTools\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\Pathfinder\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\Buffalo\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\Buffalo\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\ClassicStockResources\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\ClassicStockResources\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\001KerbalActuators\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\001KerbalActuators\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\000ABARISBridgeDoNotDelete\*.*" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\000ABARISBridgeDoNotDelete\"
xcopy /Y "C:\KSPDev\GameData\WildBlueIndustries\Pathfinder\Pathfinder.version" "C:\Projects\KSP\WildBlueIndustries\Pathfinder\Notes\"

del "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\000WildBlueTools\MiniAVC.xml"
del "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\001KerbalActuators\MiniAVC.xml"
del "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\Pathfinder\MiniAVC.xml"
del "C:\Projects\KSP\WildBlueIndustries\Pathfinder\GameData\WildBlueIndustries\Buffalo\MiniAVC.xml"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Binary file modified Pathfinder/bin/Debug/BARISBridge.dll
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/BARISBridge.pdb
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/Pathfinder.dll
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/Pathfinder.dll.mdb
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/Pathfinder.pdb
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/WildBlueTools.dll
Binary file not shown.
Binary file modified Pathfinder/bin/Debug/WildBlueTools.pdb
Binary file not shown.
Binary file modified Pathfinder/obj/Debug/Pathfinder.csprojAssemblyReference.cache
Binary file not shown.
Binary file modified Pathfinder/obj/Debug/Pathfinder.dll
Binary file not shown.
Binary file modified Pathfinder/obj/Debug/Pathfinder.pdb
Binary file not shown.

0 comments on commit e86f94e

Please sign in to comment.