mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
Introduce new $VERSION_GIT_TAG environment variable, and update all references to release@version in all projects to use the new variable.
25 lines
686 B
Text
25 lines
686 B
Text
SKeymanVersion = '$RELEASE';
|
|
|
|
KeymanVersion_Major = $RELEASE_MAJOR;
|
|
KeymanVersion_Minor = $RELEASE_MINOR;
|
|
|
|
// Keyman Version Information
|
|
|
|
CKeymanVersionInfo: TKeymanVersionInfo = (
|
|
// These fields match fields in /resources/build/build-utils.sh
|
|
Version: '$Version';
|
|
VersionWin: '$VersionWin';
|
|
VersionRelease: '$VersionRelease';
|
|
VersionMajor: $VersionMajor;
|
|
VersionMinor: $VersionMinor;
|
|
VersionPatch: $VersionPatch;
|
|
Tier: '$Tier';
|
|
Tag: '$Tag';
|
|
VersionWithTag: '$VersionWithTag';
|
|
VersionGitTag: '$VersionGitTag';
|
|
Environment: '$Environment';
|
|
|
|
// These fields are useful only for Windows apps
|
|
VersionRc: '$VersionRc'
|
|
);
|
|
|