Go to the source code of this file.
| #define DtVrfVersionNumber "Development_Version" |
Version strings must not contain spaces.
| #define PLUGIN_COMPATIBLE_VERSION "5.0.2" |
| #define DtVrfClassDocsVersion "5.0.2" |
Since the doc builds cannot access the nightbus version number, they pull it from here.
| #define DATA_INSTALLER_VERSION "5.0.2" |
This is the version that will be added to the windows registry for the data installer to find when installing. In most cases this should match PLUGIN_COMPATIBLE_VERSION.
| #define MESSAGE_MAJOR_VERSION 51 |
When updating major/minor versions of a release, make sure to update these numbers as well Version 5.0 = 51.
| #define MESSAGE_MINOR_VERSION 5 |
| #define DtVrfCopyrightYearString "2022" |
Copyright date for MAK software.
| #define DtVrfCopyrightYearInt 2022 |
| #define VRF_RELEASE_NUM 25 |
The release number will be unique for each VR-Forces release. The numbers may not be in sequential order. Previous versions are left as comments below for reference. Between versions, "123456789" is used as the release number to indicate that it is not an official release.
| #define MESSAGE_EXTRA_INFORMATION 1 |
Note that messages are assumed to be valid within a major/minor version release. This value should only be changed if, for some reason, that needs to be changed within a maintenance release line.
| #define DtMessageVersionConstructor |
( |
|
major, |
|
|
|
minor, |
|
|
|
extra |
|
) |
| ((major & 0x0000FFFF) << 16) | ((minor & 0x000000FF) << 8) | (extra & 0x000000FF) |
| #define DtMessageMajorVersion |
( |
|
version | ) |
((version & 0xFFFF0000) >> 16) |
| #define DtMessageMinorVersion |
( |
|
version | ) |
((version & 0x0000FF00) >> 8) |
| #define DtMessageExtraInformation |
( |
|
version | ) |
(version & 0x000000FF) |