You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be great to have Windows-only version information for Windows executables.
If I compile with hxcpp, I get an executable with the icon but it is missing the version information:
I also tried with several ways to attach a .rc file with this info:
1 VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEOS 0x4
FILETYPE 0x2
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "CompanyName", ""
VALUE "FileVersion", "1.0.0.0"
VALUE "FileDescription", "Sample"
VALUE "InternalName", ""
VALUE "LegalCopyright", "Author Name"
VALUE "LegalTrademarks", ""
VALUE "OriginalFilename", "Sample.exe"
VALUE "ProductName", "Sample"
VALUE "ProductVersion", "1.0.0.0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 1252
}
}
Some fields like File Description are important in Windows Applications, as it is used as description in the taskbar and system tray and the others are informative to the user and enrich some other Windows dialogs.
Could there be any way to specify these?
I'd expect something like,
jgranick
changed the title
Ability to define Version Information for Windows executables
Add support for embedded version information on Windows
Jan 10, 2017
This feature can be achieved by defining resourceFile which makes it able to assign the resource.rc file. This feature has been added on hxcpp since this commit.
From @alexandervrs on December 5, 2016 22:45
It'd be great to have Windows-only version information for Windows executables.
If I compile with hxcpp, I get an executable with the icon but it is missing the version information:
I also tried with several ways to attach a .rc file with this info:
Some fields like File Description are important in Windows Applications, as it is used as description in the taskbar and system tray and the others are informative to the user and enrich some other Windows dialogs.
Could there be any way to specify these?
I'd expect something like,
in the project.xml file
Copied from original issue: openfl/openfl#1370
The text was updated successfully, but these errors were encountered: