mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-14 19:49:33 +00:00
Add VERSIONINFO strings to UiEditor
This commit is contained in:
parent
6f5546221d
commit
022fd0a97f
2 changed files with 17 additions and 0 deletions
|
@ -12,4 +12,18 @@ $IF INFORMVERSION_BI = UNDEFINED THEN
|
||||||
CONST __UI_VersionPatch = "3"
|
CONST __UI_VersionPatch = "3"
|
||||||
CONST __UI_Version = __UI_VersionMajor + "." + __UI_VersionMinor + "." + __UI_VersionPatch
|
CONST __UI_Version = __UI_VersionMajor + "." + __UI_VersionMinor + "." + __UI_VersionPatch
|
||||||
|
|
||||||
|
' This is only added when the file is included from UiEditor.bas
|
||||||
|
$IF UIEDITOR_BAS = DEFINED THEN
|
||||||
|
$VERSIONINFO:CompanyName='Samuel Gomes, George McGinn, Fellippe Heitor'
|
||||||
|
$VERSIONINFO:FileDescription='InForm-PE Form Designer executable'
|
||||||
|
$VERSIONINFO:InternalName='UiEditor'
|
||||||
|
$VERSIONINFO:LegalCopyright='Copyright (c) 2024 Samuel Gomes, George McGinn, Fellippe Heitor'
|
||||||
|
$VERSIONINFO:LegalTrademarks='All trademarks are property of their respective owners'
|
||||||
|
$VERSIONINFO:OriginalFilename='UiEditor.exe'
|
||||||
|
$VERSIONINFO:ProductName='InForm-PE Form Designer'
|
||||||
|
$VERSIONINFO:Web='https://github.com/a740g/InForm-PE'
|
||||||
|
$VERSIONINFO:Comments='https://github.com/a740g/InForm-PE'
|
||||||
|
$VERSIONINFO:FILEVERSION#=1,5,3,0
|
||||||
|
$VERSIONINFO:PRODUCTVERSION#=1,5,3,0
|
||||||
|
$END IF
|
||||||
$END IF
|
$END IF
|
||||||
|
|
|
@ -336,6 +336,9 @@ $ELSE
|
||||||
END DECLARE
|
END DECLARE
|
||||||
$END IF
|
$END IF
|
||||||
|
|
||||||
|
' This will enable the version info strings in InFormVersion.bi
|
||||||
|
$LET UIEDITOR_BAS = TRUE
|
||||||
|
|
||||||
'$INCLUDE:'extensions/Ini.bi'
|
'$INCLUDE:'extensions/Ini.bi'
|
||||||
'$INCLUDE:'InForm.bi'
|
'$INCLUDE:'InForm.bi'
|
||||||
'$INCLUDE:'UiEditor.frm'
|
'$INCLUDE:'UiEditor.frm'
|
||||||
|
|
Loading…
Reference in a new issue