Skip to content

Commit

Permalink
3.16 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gotmachine committed Aug 2, 2022
1 parent 59583bd commit d19c443
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
## v3.16 for all versions of KSP from 1.8.0 to 1.12.x

- 2022-08-02

### Changes since the last release
* Fixed CommNet state stopping being updated on unloaded vessels after a while or on certain map events.

## v3.15 for all versions of KSP from 1.8.0 to 1.12.x

- 2022-07-24
Expand Down
2 changes: 1 addition & 1 deletion GameData/Kerbalism/Kerbalism.version
Expand Up @@ -3,7 +3,7 @@
"URL": "https://raw.githubusercontent.com/Kerbalism/Kerbalism/master/GameData/Kerbalism/Kerbalism.version",
"DOWNLOAD": "https://github.com/Kerbalism/Kerbalism/releases",
"CHANGE_LOG_URL": "https://github.com/Kerbalism/Kerbalism/blob/master/CHANGELOG.md",
"VERSION": {"MAJOR": 3, "MINOR": 15, "PATCH": 0, "BUILD": 0},
"VERSION": {"MAJOR": 3, "MINOR": 16, "PATCH": 0, "BUILD": 0},
"KSP_VERSION": {"MAJOR": 1, "MINOR": 12, "PATCH": 0},
"KSP_VERSION_MIN": {"MAJOR": 1, "MINOR": 8, "PATCH": 0},
"KSP_VERSION_MAX": {"MAJOR": 1, "MINOR": 12, "PATCH": 9}
Expand Down
2 changes: 1 addition & 1 deletion GameData/Kerbalism/VersionConfig.xml
Expand Up @@ -14,7 +14,7 @@ The values defined here will be propagated to :
Kerbalism major and minor version numbers
-->
<KerbalismVersionMajor>3</KerbalismVersionMajor>
<KerbalismVersionMinor>15</KerbalismVersionMinor>
<KerbalismVersionMinor>16</KerbalismVersionMinor>
<!--
Must match the `include=XXXX` of a KBinVersionConstant item,
used to determine the lowest and highest supported KSP version in the Kerbalism.version KSP-AVC file.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -9,18 +9,18 @@ Kerbalism is a mod for Kerbal Space Program that alters the game to add life sup
#### Features summary :

- **Life support** : Kerbals consume food, water and oxygen and will die if they aren't provided. Various processes can be added to recycle or produce those resources in situ.
- **Stress** : Kerbals require adequate living space, atmospheric pressure and comforts. When those are lacking, they will get more and more stressed and start making mistakes.
- **Radiation** : Kerbalism simulate the space radiation environement and radiation from local sources. A vessel must be adequately shielded and mission planning must be adjusted to avoid the most deadly places like planetary radiation belts.
- **Reliability** : Components have a limited operational lifetime and will fail over time, and engines have a limited amount of ignitions and a limited burn time.
- **Stress** : Without adequate living space, atmospheric pressure and comforts, Kerbals will get stressed and start making mission-threatening mistakes.
- **Radiation** : Kerbalism simulate the space radiation environment and radiation from local sources. A vessel must be adequately shielded and mission planning must be adjusted to avoid the most deadly places like planetary radiation belts.
- **Reliability** : Components have a limited operational lifetime and will fail over time. Engines have a limited amount of ignitions and a limited burn time.
- **ISRU** : Instead of the easy "ore to everything" stock system, producing and processing resources in situ uses a semi-realistic set of extraction and conversion rules.
- **Science over time** : Experiments produce data over time. The data is also transmitted over time, making science collection an automated background mechanism instead of the stock click-spammy system. Kerbalism also removes the stock labs "infinite science" mechanism, rebalance the stock experiments and add many probe, satellite and late-game manned experiments.
- **Background processing** : All vessels are simulated continuously, not only the currently active one. Life support, resource processing, experiments and data transmission are simulated in the background, even during time warp.
- **Vessels management** : Kerbalism provide a centralized user interface to monitor and control all your vessels. Many actions can be performed without having to switch to a vessel.
- **Mission planning** : The editor user interface allow to evaluate your vessel design against the various environments and provide extended information about all aspects of the mod.
- **Science over time** : Experiments produce data over time, up to several years. This data is also transmitted over time, making science collection a relaxing background mechanism instead of the stock click-spammy system. Kerbalism also replace the stock labs "infinite science", rebalance existing experiments and add many probe, satellite and late-game manned experiments.
- **Background processing** : All vessels are simulated continuously, not only the currently active one. Life support, resource processing, experiments and data transmission are simulated in the background while keeping a low performance overhead.
- **Vessels management** : All vessels can be monitored and controlled to some extent from a centralized user interface available in all scenes.
- **Mission planning** : The editor user interface allow to evaluate your vessel design against various environments and provide extended information about all aspects of the mod.

For more detailed information, go to the **[Github wiki]** and the **[FAQ]**.

## Current version: 3.15
## Current version: 3.16

**Download** : **[Github releases]** - **[CKAN]**
**Docs & support** : **[Github wiki]** - **[Discord]** - [FAQ] - [Github issues] - [KSP forums thread]
Expand Down
4 changes: 2 additions & 2 deletions src/Kerbalism/Properties/AssemblyInfo.cs
Expand Up @@ -23,5 +23,5 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("3.15")]
[assembly: AssemblyFileVersion("3.15")]
[assembly: AssemblyVersion("3.16")]
[assembly: AssemblyFileVersion("3.16")]
4 changes: 2 additions & 2 deletions src/KerbalismBootstrap/Properties/AssemblyInfo.cs
Expand Up @@ -31,5 +31,5 @@
// 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.15.*")]
[assembly: AssemblyFileVersion("3.15")]
[assembly: AssemblyVersion("3.16.*")]
[assembly: AssemblyFileVersion("3.16")]

0 comments on commit d19c443

Please sign in to comment.