I wrote an installer for my application using the pre-compiled Qt Installer Framework version 2.0.1 binaries. However, the installer window will not display any of my logos in any way possible.
The logo in question is called "installerlogo.png", a 64x64 image with an alpha channel located at the top of the installer's directory structure (the same directory where config / and packages / directories are located.)
I made another logo for an icon named "installericon.ico", which is only the 16x16 version above, just renamed to ".ico" (is this the wrong way to do this?)
I tried the following in the config.xml file:
<InstallerApplicationIcon>installericon</InstallerApplicationIcon> <InstallerWindowIcon>installerlogo</InstallerWindowIcon> <Logo>installerlogo.png</Logo> <Background>installerlogo.png</Background>
But not one of them gives visual results.
source share