Skip to content

Commit

Permalink
KSP 1.4.4 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-125 committed Jun 23, 2018
1 parent e775387 commit db79ab6
Show file tree
Hide file tree
Showing 33 changed files with 478 additions and 406 deletions.
3 changes: 2 additions & 1 deletion Buffalo/Arms/WBIModuleAsteroidScanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class WBIModuleAsteroidScanner : PartModule, IModuleInfo
private const string kNoAnalysisModule = "Unable to find an analysis module, cannot proceed!";
private const string kNoPotato = "No analysis possible. It doesn't appear that you're attached to an asteroid.";

protected AsteroidScannerInfo scannerInfo = new AsteroidScannerInfo();
protected AsteroidScannerInfo scannerInfo;

[KSPEvent(guiName = "Scan Asteroid", guiActive = true, guiActiveUnfocused = true, unfocusedRange = 3.0f)]
public void ScanAsteroid()
Expand Down Expand Up @@ -95,6 +95,7 @@ public override string GetInfo()

public override void OnStart(StartState state)
{
scannerInfo = new AsteroidScannerInfo();
base.OnStart(state);
}
}
Expand Down
7 changes: 7 additions & 0 deletions Buffalo/Buffalo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@
<Folder Include="Science\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>"C:\Projects\KSP\WildBlueIndustries\pdb2mdb\pdb2mdb.exe" "$(TargetFileName)"
xcopy /Y "$(TargetPath)" "C:\KSPDev\GameData\WildBlueIndustries\Buffalo\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).pdb" "C:\KSPDev\GameData\WildBlueIndustries\Buffalo\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).dll.mdb" "C:\KSPDev\GameData\WildBlueIndustries\Buffalo\Plugins\"
xcopy /Y "$(TargetDir)$(TargetName).dll" "C:\KSPDev\GameData\WildBlueIndustries\Buffalo\Plugins\"</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.
<Target Name="BeforeBuild">
Expand Down
Binary file added Buffalo/bin/Debug/Buffalo.dll.mdb
Binary file not shown.
Empty file.
5 changes: 3 additions & 2 deletions Buffalo/obj/Debug/Buffalo.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\KSPTrackIR.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\Mono.Cecil.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\Ionic.Zip.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\TDx.TDxInput.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\RedShellSDK.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\BARISBridge.pdb
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\KerbalActuators.pdb
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\bin\Debug\WildBlueTools.pdb
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.csprojResolveAssemblyReference.cache
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.csprojAssemblyReference.cache
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.csproj.CoreCompileInputs.cache
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.csproj.CopyComplete
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.dll
C:\Projects\KSP\WildBlueIndustries\Buffalo\Buffalo\obj\Debug\Buffalo.pdb
Binary file not shown.
5 changes: 0 additions & 5 deletions GameData/WildBlueIndustries/000WildBlueTools/MiniAVC.xml

This file was deleted.

This file was deleted.

Binary file not shown.
15 changes: 15 additions & 0 deletions GameData/WildBlueIndustries/000WildBlueTools/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ 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.55.7
- Recompiled for KSP 1.4.4

1.55.6
- Fixes issue where resources were consumed when trying to reconfigure a disassembled module.

1.55.5
- Fixes to OmniStorage.

1.55.4
- Bug fixes

1.55.3
- Bug fixes

1.55.2
- Bug fixes
- Classic Stock templates update - thanks JadeOfMaar! :)
Expand Down
Loading

0 comments on commit db79ab6

Please sign in to comment.