Skip to content

Commit

Permalink
Preparing for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
e-dog committed Dec 17, 2014
1 parent 8ca562b commit eff2008
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
Binary file modified GameData/ProceduralFairings/KSPAPIExtensions.dll
Binary file not shown.
Binary file modified GameData/ProceduralFairings/ProceduralFairings.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Misc/makezip.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set name=C:\games\KSPtest\ProcFairings_3.10.zip
set name=C:\games\KSPtest\ProcFairings_3.11.zip
del %name%
7z a %name% readme.txt
cd ..
Expand Down
5 changes: 5 additions & 0 deletions Misc/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ Right-click parts and use tweakables.
Maximum (and minimum) part size is limited by tech. See GameData/ProceduralFairings/common.cfg for details.

--- Version history ---
3.11
-Updated for KSP 0.90.
-Added optional manual fairing shape controls.
-Fixed tech restrictions checking in science mode (patch by Zwa333).

3.10
-Updated KAE DLL for KSP 0.25.
-Payload auto-struts by marce155.
Expand Down
2 changes: 1 addition & 1 deletion Source/FairingBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public virtual void FixedUpdate()
float minSize=PFUtils.getTechMinValue("PROCFAIRINGS_MINDIAMETER", 0.25f);
float maxSize=PFUtils.getTechMaxValue("PROCFAIRINGS_MAXDIAMETER", 30);

PFUtils.setFieldRange(Fields["manualMaxSize"], minSize, maxSize);
PFUtils.setFieldRange(Fields["manualMaxSize"], minSize, maxSize*2);

((UI_FloatEdit)Fields["manualMaxSize"].uiControlEditor).incrementLarge=diameterStepLarge;
((UI_FloatEdit)Fields["manualMaxSize"].uiControlEditor).incrementSmall=diameterStepSmall;
Expand Down

0 comments on commit eff2008

Please sign in to comment.