Merge pull request #1410 from karim/msi-welcome-dialog

Update the welcome dialog text for Windows Installer
This commit is contained in:
Justin Clift
2018-06-03 23:57:45 +01:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ set LIGHT=-sw1104
:: Compile & Link
"%WIX%\bin\candle.exe" -nologo -pedantic -arch %ARCH% %SQLCIPHER% product.wxs
"%WIX%\bin\light.exe" -nologo -pedantic %LIGHT% %ICE% -ext WixUIExtension -ext WixUtilExtension product.wixobj -out %MSI%.msi
"%WIX%\bin\light.exe" -nologo -pedantic %LIGHT% %ICE% -ext WixUIExtension -ext WixUtilExtension -cultures:en-us -loc strings.wxl product.wixobj -out %MSI%.msi
:: Cleanup
del product.wixobj

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Culture="en-us" xmlns="http://schemas.microsoft.com/wix/2006/localization">
<String Id="WelcomeDlgDescription">This Setup Wizard will install [ProductName] on your computer.
If you have a previous version already installed, this will update it.</String>
</WixLocalization>