2015-02-06 02:08:48 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
|
|
|
<Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
|
|
|
|
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
|
|
|
|
|
|
|
|
<PropertyRef Id="UpgradeTable" />
|
|
|
|
<PropertyRef Id="REGISTRYKEY" />
|
|
|
|
|
2016-09-22 21:07:56 -03:00
|
|
|
<Property Id="HHExe" Value="C:\Windows\hh.exe" />
|
|
|
|
<CustomAction Id="SetHHExe" Property="HHCExe" Value='[WindowsFolder]\hh.exe' Execute="immediate" />
|
|
|
|
<InstallExecuteSequence>
|
|
|
|
<Custom Action="SetHHExe" Before="CostFinalize">1</Custom>
|
|
|
|
</InstallExecuteSequence>
|
|
|
|
|
2015-02-06 02:08:48 -04:00
|
|
|
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
2015-05-03 18:54:32 -03:00
|
|
|
<ComponentGroupRef Id="doc" Primary="yes" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<ComponentRef Id="OptionalFeature" />
|
2015-05-03 18:54:32 -03:00
|
|
|
</Feature>
|
|
|
|
<Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
|
2015-02-06 02:08:48 -04:00
|
|
|
<ComponentGroupRef Id="doc" />
|
|
|
|
|
2015-02-11 21:49:01 -04:00
|
|
|
<?ifdef DocFilename ?>
|
2015-02-06 02:08:48 -04:00
|
|
|
<Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
|
2015-07-09 00:18:44 -03:00
|
|
|
<RegistryKey Root="HKMU" Key="[OPTIONALFEATURESREGISTRYKEY]">
|
|
|
|
<RegistryValue Name="$(var.OptionalFeatureName)_shortcut" Type="string" Value="$(var.Version)" KeyPath="yes" />
|
|
|
|
</RegistryKey>
|
2015-02-06 02:08:48 -04:00
|
|
|
<Shortcut Id="python.chm"
|
2016-09-22 21:07:56 -03:00
|
|
|
Target="[HHExe]"
|
|
|
|
Arguments="[#python.chm]"
|
2015-02-06 02:08:48 -04:00
|
|
|
Name="!(loc.ShortcutName)"
|
2015-10-31 16:41:46 -03:00
|
|
|
Description="!(loc.ShortcutDescription)"
|
2016-09-22 21:07:56 -03:00
|
|
|
WorkingDirectory="InstallDirectory"
|
|
|
|
Show="maximized" />
|
2015-02-06 02:08:48 -04:00
|
|
|
<RemoveFolder Id="Remove_MenuDir" On="uninstall" />
|
|
|
|
</Component>
|
2015-02-11 21:49:01 -04:00
|
|
|
<?endif ?>
|
2015-02-06 02:08:48 -04:00
|
|
|
|
|
|
|
</Feature>
|
|
|
|
</Product>
|
|
|
|
</Wix>
|