1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-05-12 06:50:12 +00:00

Add VERSIONINFO strings to UiEditor

This commit is contained in:
Samuel Gomes 2024-01-11 07:47:20 +05:30
parent 6f5546221d
commit 022fd0a97f
2 changed files with 17 additions and 0 deletions

View file

@ -12,4 +12,18 @@ $IF INFORMVERSION_BI = UNDEFINED THEN
CONST __UI_VersionPatch = "3"
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

View file

@ -336,6 +336,9 @@ $ELSE
END DECLARE
$END IF
' This will enable the version info strings in InFormVersion.bi
$LET UIEDITOR_BAS = TRUE
'$INCLUDE:'extensions/Ini.bi'
'$INCLUDE:'InForm.bi'
'$INCLUDE:'UiEditor.frm'