Skip to content

Commit

Permalink
Prep for v3.9.0 - KSP 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Dec 21, 2020
1 parent 28d5b21 commit 1d90c97
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
Binary file modified GameData/SolverEngines/Plugins/SolverEngines.dll
Binary file not shown.
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.9.0
* Recompile for KSP 1.10.1

v3.8.0
* Recompile for KSP 1.9.1
* Take independent throttle and thrust limiter into account
Expand Down
8 changes: 4 additions & 4 deletions GameData/SolverEngines/SolverEngines.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@
},
"VERSION" : {
"MAJOR" : 3,
"MINOR" : 8,
"MINOR" : 9,
"PATCH" : 0,
"BUILD" : 0
},
"KSP_VERSION" : {
"MAJOR" : 1,
"MINOR" : 9,
"MINOR" : 10,
"PATCH" : 1
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 8,
"MINOR": 10,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 9,
"MINOR": 10,
"PATCH": 99,
"BUILD": 0
}
Expand Down
4 changes: 2 additions & 2 deletions SolverEngines/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// 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.8.0.0")]
[assembly: AssemblyFileVersion("3.9.0.0")]

[assembly: KSPAssembly("SolverEngines", 3, 8, 0)]
[assembly: KSPAssembly("SolverEngines", 3, 9, 0)]

0 comments on commit 1d90c97

Please sign in to comment.