diff --git a/BDArmory.Core/Properties/AssemblyInfo.cs b/BDArmory.Core/Properties/AssemblyInfo.cs index bd78bb882..970767cc6 100644 --- a/BDArmory.Core/Properties/AssemblyInfo.cs +++ b/BDArmory.Core/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] +[assembly: AssemblyVersion("1.2.1.0")] +[assembly: AssemblyFileVersion("1.2.1.0")] [assembly: KSPAssembly("BDArmory.Core", 1, 0)] diff --git a/BDArmory/Distribution/GameData/BDArmory/BDArmory.version b/BDArmory/Distribution/GameData/BDArmory/BDArmory.version index d0b9da797..532de2559 100644 --- a/BDArmory/Distribution/GameData/BDArmory/BDArmory.version +++ b/BDArmory/Distribution/GameData/BDArmory/BDArmory.version @@ -12,20 +12,20 @@ { "MAJOR":1, "MINOR":2, - "PATCH":0, + "PATCH":1, "BUILD":0 }, "KSP_VERSION": { "MAJOR":1, "MINOR":4, - "PATCH":2 + "PATCH":3 }, "KSP_VERSION_MIN": { "MAJOR":1, "MINOR":4, - "PATCH":2 + "PATCH":3 }, "KSP_VERSION_MAX": { diff --git a/BDArmory/Distribution/GameData/BDArmory/ChangeLog.txt b/BDArmory/Distribution/GameData/BDArmory/ChangeLog.txt index 8efd10a38..94375c08d 100644 --- a/BDArmory/Distribution/GameData/BDArmory/ChangeLog.txt +++ b/BDArmory/Distribution/GameData/BDArmory/ChangeLog.txt @@ -1,4 +1,10 @@ -v1.2.0 +v1.2.1 +* NEW FEATURES: + * Recompiled for KSP 1.4.3. +* FIXES: + * Fixed model path for Flare & Chaff. Issue #512. + +v1.2.0 * NEW FEATURES: * Support for Unity 2017. Icons textures fixed by PapaJoe. Thanks to @SpannerMonkey for chaff/smoke models. diff --git a/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/chaffDispenser.cfg b/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/chaffDispenser.cfg deleted file mode 100644 index d8090f939..000000000 --- a/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/chaffDispenser.cfg +++ /dev/null @@ -1,67 +0,0 @@ -PART -{ -// Kerbal Space Program - Part Config -// -// - -// --- general parameters --- -name = bahaChaffPod -module = Part -author = BahamutoD - -// --- asset parameters --- -mesh = model.mu -rescaleFactor = 1 - - -// --- node definitions --- -node_attach = 0.0, -0.11, 0, 0, -1, 0, 0 - - -// --- editor parameters --- -TechRequired = precisionEngineering -entryCost = 2100 -cost = 600 -category = none -subcategory = 0 -title = Chaff Dispenser -manufacturer = Bahamuto Dynamics -description = Drops chaff for confusing or breaking radar locks. -// attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision -attachRules = 0,1,0,0,1 - -// --- standard part parameters --- -mass = 0.001 -dragModelType = default -maximum_drag = 0.2 -minimum_drag = 0.2 -angularDrag = 2 -crashTolerance = 7 -maxTemp = 3600 - -MODEL -{ - model = BDArmory/Parts/cmDropper/model - texture = tex_cmDispenser, BDArmory/Parts/cmDropper/tex_chaffDispenser -} - - -MODULE -{ - name = CMDropper - ejectTransformName = cmTransform - countermeasureType = chaff - ejectVelocity = 5 -} - -RESOURCE -{ - name = CMChaff - amount = 42 - maxAmount = 42 -} -DRAG_CUBE -{ - cube = Default,0.06035,0.47415,0.1406,0.06035,0.47415,0.1406,0.06429,0.48925,0.1149,0.06429,0.42815,0.2935,0.05487,0.4389,0.1835,0.05487,0.4394,0.1835, 0,-0.1847,3.198E-08, 0.2372,0.2509,0.2774 -} -} diff --git a/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/flareDispenser.cfg b/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/flareDispenser.cfg deleted file mode 100644 index 1f4d5d44c..000000000 --- a/BDArmory/Distribution/GameData/BDArmory/Parts/AmmoBox/flareDispenser.cfg +++ /dev/null @@ -1,60 +0,0 @@ -PART -{ -// Kerbal Space Program - Part Config -// -// - -// --- general parameters --- -name = bahaCmPod -module = Part -author = BahamutoD - -// --- asset parameters --- -mesh = model.mu -rescaleFactor = 1 - - -// --- node definitions --- -node_attach = 0.0, -0.11, 0, 0, -1, 0, 0 - - -// --- editor parameters --- -TechRequired = precisionEngineering -entryCost = 2100 -cost = 600 -category = none -subcategory = 0 -title = Flare Dispenser -manufacturer = Bahamuto Dynamics -description = Drops flares for confusing heat-seeking missiles. -// attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision -attachRules = 0,1,0,0,1 - -// --- standard part parameters --- -mass = 0.001 -dragModelType = default -maximum_drag = 0.2 -minimum_drag = 0.2 -angularDrag = 2 -crashTolerance = 7 -maxTemp = 3600 - - -MODULE -{ - name = CMDropper - countermeasureType = flare - ejectVelocity = 40 -} - -RESOURCE -{ - name = CMFlare - amount = 42 - maxAmount = 42 -} -DRAG_CUBE -{ - cube = Default,0.06035,0.47415,0.1406,0.06035,0.47415,0.1406,0.06429,0.48925,0.1149,0.06429,0.42815,0.2935,0.05487,0.4389,0.1835,0.05487,0.4394,0.1835, 0,-0.1847,3.198E-08, 0.2372,0.2509,0.2774 -} -} diff --git a/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/chaffDispenser.cfg b/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/chaffDispenser.cfg index ad12e1075..d8090f939 100644 --- a/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/chaffDispenser.cfg +++ b/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/chaffDispenser.cfg @@ -60,5 +60,8 @@ RESOURCE amount = 42 maxAmount = 42 } - +DRAG_CUBE +{ + cube = Default,0.06035,0.47415,0.1406,0.06035,0.47415,0.1406,0.06429,0.48925,0.1149,0.06429,0.42815,0.2935,0.05487,0.4389,0.1835,0.05487,0.4394,0.1835, 0,-0.1847,3.198E-08, 0.2372,0.2509,0.2774 +} } diff --git a/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/flareDispenser.cfg b/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/flareDispenser.cfg index db5bab65f..1f4d5d44c 100644 --- a/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/flareDispenser.cfg +++ b/BDArmory/Distribution/GameData/BDArmory/Parts/cmDropper/flareDispenser.cfg @@ -53,5 +53,8 @@ RESOURCE amount = 42 maxAmount = 42 } - +DRAG_CUBE +{ + cube = Default,0.06035,0.47415,0.1406,0.06035,0.47415,0.1406,0.06429,0.48925,0.1149,0.06429,0.42815,0.2935,0.05487,0.4389,0.1835,0.05487,0.4394,0.1835, 0,-0.1847,3.198E-08, 0.2372,0.2509,0.2774 +} } diff --git a/BDArmory/Properties/AssemblyInfo.cs b/BDArmory/Properties/AssemblyInfo.cs index ae144cec0..f7e23222a 100644 --- a/BDArmory/Properties/AssemblyInfo.cs +++ b/BDArmory/Properties/AssemblyInfo.cs @@ -18,8 +18,8 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion("1.2.0.*")] -[assembly: AssemblyFileVersion("1.2.0.0")] +[assembly: AssemblyVersion("1.2.1.*")] +[assembly: AssemblyFileVersion("1.2.1.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.