I want to add a version number to my installation caption, but leave the name without the version number in all other places.
makensis does it the following way:
This works only for an English-only installation.Name "NSIS"
Caption "NSIS ${VERSION} Setup"
I tried to do the following:
!searchreplace "ASDF_${LANGLOAD}" "$(^SetupCaption)" "$(^Name)" "$(^Name) v${VERSION}"
LangString "^SetupCaption" "${LANG_${LANG_LOADING}}" "${ASDF_${LANGLOAD}}"Where "${LANGLOAD}" is every loaded language. It does not work.Any suggestions? Another option I see is editing .nlf files, but this is quite an ugly solution.