Version string format: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Factorio uses a common encoding method to serialize the version string in binary data that's present in multiple places. It consists of four consecutive 2-byte unsigned [https...") |
No edit summary |
||
Line 2: | Line 2: | ||
{| class="wikitable" | {| class="wikitable" | ||
| short | |||
| Factorio's major version number (e.g. 0) | |||
|- | |- | ||
| short | | short |
Revision as of 03:18, 8 January 2017
Factorio uses a common encoding method to serialize the version string in binary data that's present in multiple places. 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 0. |