* src/installer.nsi: Add branding text.
--
This is useful information to show down there and avoids
the problem that ugly NSIS version strings are rendered into
the branding text.
# Set the output filename.
!ifdef GPG4WIN_VANILLA
OutFile "${PACKAGE}-vanilla-${VERSION}.exe"
+BrandingText "${PRETTY_PACKAGE}-vanilla-${VERSION}"
!else
!ifdef GPG4WIN_LIGHT
OutFile "${PACKAGE}-light-${VERSION}.exe"
+BrandingText "${PRETTY_PACKAGE}-light-${VERSION}"
!else
OutFile "${PACKAGE}-${VERSION}.exe"
+BrandingText "${PRETTY_PACKAGE}-${VERSION}"
!endif
!endif