diff options
author | Ruben Pollan <meskio@sindominio.net> | 2019-08-07 13:02:04 -0400 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-08-07 13:03:26 -0400 |
commit | 9bbe6bd2ac5441b93a6012cec489dc8a6278face (patch) | |
tree | ddb3f228a4ca6f0070dab9dc732e5035315d4ceb /branding/templates/windows/template.nsi | |
parent | 7f304171b886ed62014699f748f9212130917ce1 (diff) |
[pkg] make windows cross pkg work
Diffstat (limited to 'branding/templates/windows/template.nsi')
-rwxr-xr-x | branding/templates/windows/template.nsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/branding/templates/windows/template.nsi b/branding/templates/windows/template.nsi index 3f049f9..1f7715a 100755 --- a/branding/templates/windows/template.nsi +++ b/branding/templates/windows/template.nsi @@ -32,8 +32,8 @@ RequestExecutionLevel admin !define BITMAP_FILE icon.bmp -!define MUI_ICON "..\assets\$applicationNameLower.ico" -!define MUI_UNICON "..\assets\$applicationNameLower.ico" +!define MUI_ICON "..\assets\icon.ico" +!define MUI_UNICON "..\assets\icon.ico" !define MUI_WELCOMEPAGE_TITLE "$applicationName" !define MUI_WELCOMEPAGE_TEXT "This will install $applicationName in your computer. $applicationName is a simple, fast and secure VPN Client, powered by Bitmask. \n This VPN service is run by donations from people like you." @@ -79,7 +79,7 @@ Section "InstallFiles" File "readme.txt" File "..\staging\nssm.exe" - File "/oname=icon.ico" "..\assets\$applicationNameLower.ico" + File "/oname=icon.ico" "..\assets\icon.ico" $extra_install_files |