Skip to content
This repository has been archived by the owner on Jun 17, 2021. It is now read-only.

Commit

Permalink
Update to KSP 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosm committed Oct 7, 2017
1 parent 98bc2dc commit e858752
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
6 changes: 3 additions & 3 deletions BonVoyage/BonVoyage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ public void OnGUI()
{
if (gamePaused || globalHidden) return;

if (MapView.MapIsEnabled && HighLogic.LoadedSceneIsFlight && wayPoints.Count > 0)
GLUtils.DrawCurve (wayPoints);
if (MapView.MapIsEnabled && HighLogic.LoadedSceneIsFlight && wayPoints.Count > 0)
GLUtils.DrawCurve(wayPoints);

if (InputLockManager.GetControlLock("BonVoyageInputLock") != 0)
{
Expand Down Expand Up @@ -500,7 +500,7 @@ public void DrawRcGUI(int rcGuiId) {
tooltip = "Average speed base: " + currentModule.maxSpeedBase.ToString("F") + "\n";
tooltip += "Online wheels modifier: " + currentModule.wheelsPercentualModifier.ToString() + "%\n";
if (currentModule.isManned)
tooltip += "Pilot/Scout bonus (adds to wheels modifier): " + currentModule.crewSpeedBonus.ToString() + "%\n";
tooltip += "Driver bonus: " + currentModule.crewSpeedBonus.ToString() + "%\n";
else
tooltip += "Unmanned rover penalty: 80%\n";
if (speedReduction > 0)
Expand Down
2 changes: 1 addition & 1 deletion BonVoyage/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.13.1.2")]
[assembly: AssemblyVersion("0.13.2.0")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
Binary file modified GameData/BonVoyage/BonVoyage.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions GameData/BonVoyage/BonVoyage.version
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@
{
"MAJOR" : 0,
"MINOR" : 13,
"PATCH" : 1,
"PATCH" : 2,
"BUILD" : 0
},
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 3,
"PATCH" : 0
"PATCH" : 1
},
"KSP_VERSION_MIN" :
{
"MAJOR" : 1,
"MINOR" : 3,
"PATCH" : 0
"PATCH" : 1
},
"KSP_VERSION_MAX" :
{
"MAJOR" : 1,
"MINOR" : 3,
"PATCH" : 0
"PATCH" : 1
}
}
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
Rovers background processing for KSP.

# Changelog
## 0.13.2
### Changes
- KSP 1.3.1 compatibility
- Tooltip change
- Pilots, USI Scouts and anyone with AutopilotSkill affect speed

### Fixes
- Various fixes

## 0.13.1
### Changes
- Displayed information revision
Expand Down
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
- notify about lazybones
- involve mass and gravity into average speed calculations
- involve slope rate into average speed calculations
- something is wrong with landedAt field on vessel launch
- check for closest star
- background for target picker information
- rover may stuck
Expand Down

0 comments on commit e858752

Please sign in to comment.