-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme, add license, comment type definition, add Version memb…
…er (tag + addn. commits)
- Loading branch information
1 parent
e7969f0
commit 3db2c2d
Showing
4 changed files
with
728 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
|
||
TYPE | ||
BuildVersionType : STRUCT | ||
Git : BuildVersionGitType; | ||
Project : BuildVersionProjectType; | ||
BuildVersionType : STRUCT (*BuildVersion structure definition*) | ||
Git : BuildVersionGitType; (*Git member*) | ||
Project : BuildVersionProjectType; (*Project member*) | ||
END_STRUCT; | ||
BuildVersionGitType : STRUCT | ||
Url : STRING[255]; | ||
Branch : STRING[80]; | ||
Tag : STRING[80]; | ||
AdditionalCommits : UINT; | ||
Sha1 : STRING[80]; | ||
Describe : STRING[80]; | ||
UncommittedChanges : STRING[80]; | ||
CommitDate : DATE_AND_TIME; | ||
CommitAuthorName : STRING[80]; | ||
CommitAuthorEmail : STRING[80]; | ||
BuildVersionGitType : STRUCT (*Git information structure definition*) | ||
URL : STRING[255]; (*URL of git server referenced by the default remote "origin"*) | ||
Branch : STRING[80]; (*Current branch checked out by local repository*) | ||
Tag : STRING[80]; (*Latest tag on current branch*) | ||
AdditionalCommits : UINT; (*Additional commits since latest tag*) | ||
Version : STRING[80]; (*<tag>-<addn_commits>*) | ||
Sha1 : STRING[80]; (*Full hash value from the latest commit*) | ||
Describe : STRING[80]; (*<tag>-<addn_commits>-g<short_sha1>*) | ||
UncommittedChanges : STRING[80]; (*Example: 5 files changed, 14 insertions(+), 11 deletions(-)*) | ||
CommitDate : DATE_AND_TIME; (*Local timestamp of the latest commit*) | ||
CommitAuthorName : STRING[80]; (*Name of author of latest commit*) | ||
CommitAuthorEmail : STRING[80]; (*Email of author of latest commit*) | ||
END_STRUCT; | ||
BuildVersionProjectType : STRUCT | ||
ASVersion : STRING[80]; | ||
UserName : STRING[80]; | ||
ProjectName : STRING[80]; | ||
Configuration : STRING[80]; | ||
BuildMode : STRING[80]; | ||
BuildDate : DT; | ||
BuildVersionProjectType : STRUCT (*Project information structure definition*) | ||
ASVersion : STRING[80]; (*From $(AS_VERSION), see help for PLC object properties*) | ||
UserName : STRING[80]; (*From $(AS_USER_NAME)*) | ||
ProjectName : STRING[80]; (*From $(AS_PROJECT_NAME)*) | ||
Configuration : STRING[80]; (*From $(AS_CONFIGURATION)*) | ||
BuildMode : STRING[80]; (*From $(AS_BUILD_MODE), see help for possible values - Build, Rebuild, BuildAndTransfer, ...*) | ||
BuildDate : DATE_AND_TIME; (*Local timestamp grabbed by powershell on build*) | ||
END_STRUCT; | ||
END_TYPE |
Oops, something went wrong.