Skip to content

Commit 1659ea0

Browse files
committed
1.1.0 rc1
1 parent 6148025 commit 1659ea0

File tree

6 files changed

+3
-9
lines changed

6 files changed

+3
-9
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

TestFlightAPI/TestFlightAPI/TestFlightAPI.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,7 @@ public static string GetFullPartName(Part part)
3535
{
3636
float diameter = (float)(part.Modules["ProceduralShapeCylinder"].GetType().GetField("diameter").GetValue(part.Modules["ProceduralShapeCylinder"]));
3737
float length = (float)(part.Modules["ProceduralShapeCylinder"].GetType().GetField("length").GetValue(part.Modules["ProceduralShapeCylinder"]));
38-
string size = "";
39-
if (length <= 30f)
40-
size = "short";
41-
else if (length <= 60f)
42-
size = "normal";
43-
else
44-
size = "long";
45-
return String.Format("{0}|{1:F2}-{2}", baseName, diameter, size);
38+
return String.Format("{0}|{1:F2}d{2:F2}l", baseName, diameter, length);
4639
}
4740

4841
return baseName;

TestFlightCore/TestFlightCore/.#TestFlightCore.cs

Whitespace-only changes.

makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>&1)
66

77
ZIPFILE := $(PROJ_NAME)-$(TRAVIS_TAG).zip
88

9-
all: configs
9+
all: clean configs meta
10+
cp -r GameData/TestFlight/ ~/Dropbox/KSP/TestFlight/
1011

1112
release: zip
1213

0 commit comments

Comments
 (0)