Closed X-EcutiOnner closed 10 months ago
Hi @X-EcutiOnner ,
As mentioned here => https://github.com/Neo-Mind/WARP/wiki/Exe-Object#properties , the linker version is already split into Exe.Version
and Exe.MinorVer
For 14.29, Exe.Version
is 14
and Exe.MinorVer
is 29
Hi @X-EcutiOnner , As mentioned here => https://github.com/Neo-Mind/WARP/wiki/Exe-Object#properties , the linker version is already split into
Exe.Version
andExe.MinorVer
For 14.29,
Exe.Version
is14
andExe.MinorVer
is29
I thinks it Exe.Version == 14.16
can include minor version, but i know on now i can use it by Exe.Version == 14 && Exe.MinorVer == 16
If Exe.Version == 14.16
can include minor version is better way to shorten for coding, Thanks for the clarify.
In many patches script are use the
switch
like thisIf we use
Exe.BuildDate
sometime you will write the script like thisIf we use
Exe.Version
sometime you will write the script like thisAny clients after
2023-06-07_Ragexe_1686120134
areExe.Version
14.29 We should useExe.BuildDate
Or separate betweenExe.Version
for better maintenance or not?