Windows installer improvements.
* Handle upgrades better: the old version will be removed automatically. * Detect version in batch file, so pandoc.wxs need not be modified when the version number changes. * Create pandoc-VERSION.msi.
This commit is contained in:
parent
038af8a1b9
commit
f4429e4de6
2 changed files with 27 additions and 6 deletions
|
@ -12,10 +12,21 @@ if %errorlevel% neq 0 exit /b %errorlevel%
|
|||
cabal-dev\bin\pandoc.exe -s --template data\templates\default.rtf COPYING -t rtf -S -o COPYING.rtf
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
copy COPYRIGHT COPYRIGHT.txt
|
||||
for /f "tokens=1-2 delims= " %%a in ('cabal-dev\bin\pandoc --version') do (
|
||||
@set VERSION=%%b
|
||||
goto :next
|
||||
)
|
||||
:next
|
||||
if "%VERSION%" == "" (
|
||||
echo Error: could not determine version number.
|
||||
exit /b 1
|
||||
)
|
||||
echo Detected version %VERSION%
|
||||
cd windows
|
||||
echo Creating msi...
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\candle.exe" -ext WixUIExtension pandoc.wxs
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\candle.exe" -dVERSION=%VERSION% -ext WixUIExtension pandoc.wxs
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\light.exe" -ext WixUIExtension pandoc.wixobj
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\light.exe" -ext WixUIExtension -out pandoc-%VERSION%.msi pandoc.wixobj
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
echo Starting kSign: sign, then quit kSign to complete the build...
|
||||
"C:\Program Files\kSign\kSign.exe"
|
||||
|
|
|
@ -1,12 +1,22 @@
|
|||
<?xml version="1.0"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Product Id="37DB5E26-BDA9-4166-AFD7-E23DA4B75755"
|
||||
UpgradeCode="A68E8EF6-ABB1-4F22-A3C5-68DFDF0AB562" Name="Pandoc 1.10"
|
||||
Version="1.10.2.1" Manufacturer="John MacFarlane"
|
||||
<Product Id="*"
|
||||
UpgradeCode="A68E8EF6-ABB1-4F22-A3C5-68DFDF0AB562" Name="Pandoc $(var.VERSION)"
|
||||
Version="$(var.VERSION)" Manufacturer="John MacFarlane"
|
||||
Language="1033">
|
||||
<Package InstallerVersion="200" Compressed="yes"
|
||||
Comments="Windows Installer Package" />
|
||||
<Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
|
||||
<Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
|
||||
<Upgrade Id="A68E8EF6-ABB1-4F22-A3C5-68DFDF0AB562">
|
||||
<UpgradeVersion
|
||||
Minimum="0.46.0.0" Maximum="$(var.VERSION)"
|
||||
Property="PREVIOUSVERSIONSINSTALLED"
|
||||
IncludeMinimum="yes" IncludeMaximum="no" />
|
||||
</Upgrade>
|
||||
<InstallExecuteSequence>
|
||||
<RemoveExistingProducts After="InstallFinalize"/>
|
||||
</InstallExecuteSequence>
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
<Directory Id="DesktopFolder" Name="Desktop" />
|
||||
<Directory Id="ProgramMenuFolder">
|
||||
|
@ -44,7 +54,7 @@
|
|||
<RegistryValue Root="HKCU" Key="Software\John MacFarlane\Pandoc" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
|
||||
</Component>
|
||||
</DirectoryRef>
|
||||
<Feature Id="Complete" Level="1" Title="Pandoc 1.10" Description="Complete package" Display="expand" ConfigurableDirectory="INSTALLDIR">
|
||||
<Feature Id="Complete" Level="1" Title="Pandoc $(var.VERSION)" Description="Complete package" Display="expand" ConfigurableDirectory="INSTALLDIR">
|
||||
<Feature Id="MainProgram" Title="Program" Description="The main executable." Level="1">
|
||||
<ComponentRef Id="MainExecutable" />
|
||||
</Feature>
|
||||
|
|
Loading…
Add table
Reference in a new issue