Skip to content

Commit

Permalink
Prep for v3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
al2me6 committed Dec 17, 2021
1 parent 5483439 commit d01710d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions GameData/SolverEngines/Readme_SolverEngines.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ See AJE or RealFuels for examples of how to implement SolverEngines in practice.

Changelog:

v3.12.0
* Fix a compatibility issue between SolverEngines-based engine modules and stock ModuleEngines, where SolverEngines used kilograms instead of tons for the `fuelFlowGui` field.

v3.11.0
* Respect KSP's flow and Isp multipliers as well as our own.

Expand Down
2 changes: 1 addition & 1 deletion GameData/SolverEngines/SolverEngines.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"VERSION" : {
"MAJOR" : 3,
"MINOR" : 11,
"MINOR" : 12,
"PATCH" : 0,
"BUILD" : 0
},
Expand Down
14 changes: 7 additions & 7 deletions SolverEngines/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SolverEngines")]
Expand All @@ -14,8 +14,8 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

Expand All @@ -25,14 +25,14 @@
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// 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("3.3.0.0")] // Don't change until breaking changes occur
[assembly: AssemblyFileVersion("3.10.0.0")]
[assembly: AssemblyFileVersion("3.12.0.0")]

[assembly: KSPAssembly("SolverEngines", 3, 10, 0)]
[assembly: KSPAssembly("SolverEngines", 3, 12, 0)]

0 comments on commit d01710d

Please sign in to comment.