Skip to content

Commit

Permalink
Merge branch 'Feature_74' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jwvanderbeck committed May 17, 2015
2 parents 2d0ff2f + a50ab57 commit 406b217
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [1.3.0.15](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.15) (2015-05-17)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.13...1.3.0.15)

## [1.3.0.13](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.13) (2015-05-16)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.12...1.3.0.13)
Expand Down Expand Up @@ -54,7 +58,11 @@

## [1.3.0.8](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.8) (2015-04-28)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.5...1.3.0.8)
[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.14...1.3.0.8)

## [1.3.0.14](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.14) (2015-04-28)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.5...1.3.0.14)

## [1.3.0.5](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.5) (2015-04-28)

Expand All @@ -74,15 +82,15 @@

## [1.3E1](https://github.com/jwvanderbeck/TestFlight/tree/1.3E1) (2015-03-19)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.2.2.0...1.3E1)
[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.1...1.3E1)

## [1.2.2.0](https://github.com/jwvanderbeck/TestFlight/tree/1.2.2.0) (2015-03-14)
## [1.3.0.1](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.1) (2015-03-14)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.3.0.1...1.2.2.0)
[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.2.2.0...1.3.0.1)

## [1.3.0.1](https://github.com/jwvanderbeck/TestFlight/tree/1.3.0.1) (2015-03-14)
## [1.2.2.0](https://github.com/jwvanderbeck/TestFlight/tree/1.2.2.0) (2015-03-14)

[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.2.1.0...1.3.0.1)
[Full Changelog](https://github.com/jwvanderbeck/TestFlight/compare/1.2.1.0...1.2.2.0)

## [1.2.1.0](https://github.com/jwvanderbeck/TestFlight/tree/1.2.1.0) (2015-02-28)

Expand Down
Binary file modified GameData/TestFlight/Plugins/TestFlight.dll
Binary file not shown.
Binary file modified GameData/TestFlight/Plugins/TestFlightAPI.dll
Binary file not shown.
Binary file modified GameData/TestFlight/Plugins/TestFlightContracts.dll
Binary file not shown.
Binary file modified GameData/TestFlight/Plugins/TestFlightCore.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions TestFlightCore/TestFlightCore/TestFlightCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class TestFlightCore : PartModuleExtended, ITestFlightCore

// These were created for KCT integration but might have other uses
private float dataRateLimiter = 1.0f;
private float dataCap = float.MaxValue;
private float dataCap = 1.0f;

public bool TestFlightEnabled
{
Expand Down Expand Up @@ -501,8 +501,8 @@ public float ModifyFlightData(float modifier, bool additive)
{
newFlightData *= modifier;
}
if (newFlightData > dataCap)
newFlightData = dataCap;
if (newFlightData > (maxData * dataCap))
newFlightData = maxData * dataCap;

if (newFlightData > maxData)
newFlightData = maxData;
Expand Down

0 comments on commit 406b217

Please sign in to comment.