From 7ccad7ac160b3d0235e69b7e8890ff489e6359ff Mon Sep 17 00:00:00 2001 From: Dunbaratu Date: Thu, 1 Dec 2016 17:32:38 -0600 Subject: [PATCH] Just recompiled for KSP 1.2.1 - that's all. --- LaserDist.netkan | 4 ++-- LaserDist.version | 6 +++--- makePackage.sh | 2 +- src/LaserDist/LaserDist.cs | 4 ++-- src/LaserDist/LaserDist.csproj | 11 ++++------- src/LaserDist/Properties/AssemblyInfo.cs | 4 ++-- 6 files changed, 14 insertions(+), 17 deletions(-) diff --git a/LaserDist.netkan b/LaserDist.netkan index 205ee23..4ae65c1 100644 --- a/LaserDist.netkan +++ b/LaserDist.netkan @@ -6,14 +6,14 @@ "author" : "Steven Mading", "abstract" : "Gives exact laser distances for use with kOS and other scripted autopilot systems.", "license" : "GPL-3.0", - "ksp_version" : "1.1.2", + "ksp_version" : "1.2.1", "resources": { "homepage": "https://github.com/Dunbaratu/LaserDist" }, "suggests": [ { "name": "kOS", - "min_version": "0.20", + "min_version": "1.0.1", "comment" : "LaserDist was intended to give distance data to kOS scripts." } ] diff --git a/LaserDist.version b/LaserDist.version index 8a1ce5e..53554c1 100644 --- a/LaserDist.version +++ b/LaserDist.version @@ -11,12 +11,12 @@ "VERSION": { "MAJOR": 0, "MINOR": 9, - "PATCH": 2 + "PATCH": 3 }, "KSP_VERSION": { "MAJOR": 1, - "MINOR": 1, - "PATCH": 2 + "MINOR": 2, + "PATCH": 1 }, "KSP_VERSION_MIN": { "MAJOR": 1, diff --git a/makePackage.sh b/makePackage.sh index 3244c7c..b750868 100644 --- a/makePackage.sh +++ b/makePackage.sh @@ -13,7 +13,7 @@ CMD_ZIP_ARGS="-tzip" # Location where your KSP game is installed: #INSTALL_GAME_DIR="D:/KSP mod sandbox" -INSTALL_GAME_DIR="D:/KSP_twitch" +INSTALL_GAME_DIR="D:/KSP_galileo" # Change this to "yes" if you want to install the ZIP to your game after it gets made: # Change this to "no" if you want to suppress the install to your game and just make the ZIP only: diff --git a/src/LaserDist/LaserDist.cs b/src/LaserDist/LaserDist.cs index 8091f16..7dab11f 100644 --- a/src/LaserDist/LaserDist.cs +++ b/src/LaserDist/LaserDist.cs @@ -171,12 +171,12 @@ public class LaserDistModule : PartModule /// How far to bend the laser beam relative to the part's "right" yaw. Negative values bend left. [KSPField(isPersistant=true, guiName = "Bend X", guiActive = false, guiActiveEditor = false, guiUnits = "deg", guiFormat = "N2")] - [UI_FloatRange(minValue = -15, maxValue = 15, stepIncrement = 0.1f)] + [UI_FloatRange(minValue = -15, maxValue = 15, stepIncrement = 0.001f)] public float BendX = 0.0f; /// How far to bend the laser beam relative to the part's "up" pitch. Negative values bend down. [KSPField(isPersistant=true, guiName = "Bend Y", guiActive = false, guiActiveEditor = false, guiUnits = "deg", guiFormat = "N2")] - [UI_FloatRange(minValue = -15, maxValue = 15, stepIncrement = 0.1f)] + [UI_FloatRange(minValue = -15, maxValue = 15, stepIncrement = 0.001f)] public float BendY = 0.0f; /// diff --git a/src/LaserDist/LaserDist.csproj b/src/LaserDist/LaserDist.csproj index bcce5c9..31ba2c4 100644 --- a/src/LaserDist/LaserDist.csproj +++ b/src/LaserDist/LaserDist.csproj @@ -32,13 +32,10 @@ - ..\..\..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\Assembly-CSharp.dll + ..\References\Assembly-CSharp.dll - ..\..\..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\Assembly-CSharp-firstpass.dll - - - ..\..\..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\KSPUtil.dll + ..\References\Assembly-CSharp-firstpass.dll @@ -49,10 +46,10 @@ 3.5 - ..\..\..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.dll + ..\References\UnityEngine.dll - ..\..\..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.UI.dll + ..\References\UnityEngine.UI.dll diff --git a/src/LaserDist/Properties/AssemblyInfo.cs b/src/LaserDist/Properties/AssemblyInfo.cs index 76195f1..4064413 100644 --- a/src/LaserDist/Properties/AssemblyInfo.cs +++ b/src/LaserDist/Properties/AssemblyInfo.cs @@ -13,6 +13,6 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: AssemblyFileVersion("0.9.2.0")] -[assembly: AssemblyVersion("0.9.2.0")] +[assembly: AssemblyFileVersion("0.9.3.0")] +[assembly: AssemblyVersion("0.9.3.0")] [assembly: KSPAssembly("LaserDist", 0, 20)]