22de5679b7
Added suppoer for "Handbox" custom action Changes how the focuser in and out functions. Now sends multiple :F+/-# and multiple stop commands to help get over problems with the #909 missing commands. Added support for checking for the older firmware that does not support the guiding commands, so uses guide rate slew instead.
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<?include $(sys.CURRENTDIR)\Config.wxi?>
|
|
<Product Id="*"
|
|
Name="$(var.InstallName)"
|
|
Language="1033"
|
|
Version="$(var.ProductVersion)"
|
|
Manufacturer="$(var.Manufacturer)"
|
|
UpgradeCode="$(var.UpgradeCode)">
|
|
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
|
|
|
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
|
|
|
<MediaTemplate EmbedCab="yes" />
|
|
|
|
<Property Id="REGISTRYROOT" Value="Software\Cjdawson.com Ltd\Database Patcher" />
|
|
|
|
<Condition Message="This application requires .NET Framework 4.0 or higher. Please install the .NET Framework then run this installer again.">
|
|
<![CDATA[Installed OR NETFRAMEWORK40]]>
|
|
</Condition>
|
|
|
|
<!--todo create a method to check if ASCOM is installed.-->
|
|
<!--<Condition Message="This application requires ASCOM Platform 6.4 or later. Please install this and try again.">
|
|
<![CDATA[Installed or WIX_IS_NETFRAMEWORK_471_OR_LATER_INSTALLED]]>
|
|
</Condition>-->
|
|
|
|
<!-- <Condition Message="Please use the correct installer for your operating system - x86 for 32-bit, x64 for 64-bit.">
|
|
<?if $(var.Win64) = "yes" ?>
|
|
VersionNT64
|
|
<?else?>
|
|
NOT VersionNT64
|
|
<?endif?>
|
|
</Condition> -->
|
|
|
|
|
|
<UIRef Id="InstallationUI"/>
|
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" />
|
|
|
|
<FeatureGroupRef Id="fgRoot"/>
|
|
</Product>
|
|
</Wix>
|