Version string format: Difference between revisions
Jump to navigation
Jump to search
m (Gangsir moved page Version String Format to Version string format: Downcasing to style guide compliance.) |
(Changed links going to the redirect Data_Types to go to Data types.) |
||
Line 4: | Line 4: | ||
{| class="wikitable" | {| class="wikitable" | ||
| [[ | | [[#short|short]] | ||
| Factorio's major version number (e.g. 0) | | Factorio's major version number (e.g. 0) | ||
|- | |- | ||
| [[ | | [[#short|short]] | ||
| Factorio's minor version number (e.g. 14) | | Factorio's minor version number (e.g. 14) | ||
|- | |- | ||
| [[ | | [[#short|short]] | ||
| Factorio's patch version number (e.g. 21) | | Factorio's patch version number (e.g. 21) | ||
|- | |- | ||
| [[ | | [[#short|short]] | ||
| Unknown. Seems to be either 0 or 1. | | Unknown. Seems to be either 0 or 1. | ||
|} | |} |
Revision as of 12:55, 5 September 2017
Factorio uses a common encoding method to serialize the version string in binary data that's present in multiple places, such as the map exchange string and save game file format. It consists of four consecutive 2-byte unsigned little-endian values. We'll use version 0.14.21 as an example:
short | Factorio's major version number (e.g. 0) |
short | Factorio's minor version number (e.g. 14) |
short | Factorio's patch version number (e.g. 21) |
short | Unknown. Seems to be either 0 or 1. |