mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-12 15:27:14 +03:00
602 lines
27 KiB
XML
602 lines
27 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<?define PRODUCTNAME = "EDMarketConnector"?>
|
|
<?define PRODUCTLONGNAME = "Elite Dangerous Market Connector"?>
|
|
<?define PRODUCTVERSION = "!(bind.fileVersion.EDMarketConnector.exe)" ?>
|
|
<?define UPGRADECODE = "9df571ae-d56d-46e6-af79-4e72ad54efe6" ?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Product Id="*"
|
|
Name="$(var.PRODUCTLONGNAME)"
|
|
Version="$(var.PRODUCTVERSION)"
|
|
UpgradeCode="$(var.UPGRADECODE)"
|
|
Language="!(bind.fileLanguage.EDMarketConnector.exe)"
|
|
Manufacturer="Marginal">
|
|
|
|
<Package Id="*" Keywords="Installer"
|
|
Description="$(var.PRODUCTLONGNAME) installer"
|
|
InstallerVersion="300" Compressed="yes"
|
|
Platform="x86"
|
|
Languages="1033,1029,1031,1034,1035,1036,1038,1040,1041,1043,1045,1046,1049,1058,1062,2052,2070,2074,0" />
|
|
<!-- en cs, de es fi fr hu it ja nl pl pt-BR ru uk lv zh-CN pt-PT sr-Latn neutral -->
|
|
<!-- https://msdn.microsoft.com/en-gb/goglobal/bb964664.aspx -->
|
|
|
|
<!-- Always reinstall since patching is problematic -->
|
|
<!-- http://www.joyofsetup.com/2010/01/16/major-upgrades-now-easier-than-ever/ -->
|
|
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
|
|
|
<Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
|
|
|
|
<Icon Id="EDMarketConnector.exe" SourceFile="EDMarketConnector.ico"/>
|
|
|
|
<!-- For Add/Remove programs -->
|
|
<Property Id="ARPPRODUCTICON" Value="EDMarketConnector.exe" />
|
|
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" /> <!-- Remove modify - also set by WixUI_Minimal -->
|
|
<Property Id="ARPHELPLINK" Value="https://github.com/Marginal/EDMarketConnector/wiki" />
|
|
|
|
<!-- Set INSTALLDIR from ARPINSTALLLOCATION if replacing/upgrading -->
|
|
<!-- https://wyrdfish.wordpress.com/2012/07/20/msi-writing-guidelines-this-may-be-out-of-date/ -->
|
|
<Property Id="ARPINSTALLLOCATION">
|
|
<RegistrySearch Id="GetARPINSTALLLOCATION"
|
|
Root="HKLM"
|
|
Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[WIX_UPGRADE_DETECTED]"
|
|
Name="InstallLocation"
|
|
Type="raw" />
|
|
</Property>
|
|
<CustomAction Id="SetINSTALLDIR" Property="INSTALLDIR" Value="[ARPINSTALLLOCATION]" />
|
|
<InstallUISequence>
|
|
<Custom Action="SetINSTALLDIR" After="AppSearch">
|
|
WIX_UPGRADE_DETECTED AND ARPINSTALLLOCATION
|
|
</Custom>
|
|
</InstallUISequence>
|
|
<InstallExecuteSequence>
|
|
<Custom Action="SetINSTALLDIR" After="AppSearch">
|
|
WIX_UPGRADE_DETECTED AND ARPINSTALLLOCATION
|
|
</Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
<!-- Set ARPINSTALLLOCATION from INSTALLDIR if new install -->
|
|
<!-- http://blogs.technet.com/b/alexshev/archive/2008/02/09/from-msi-to-wix-part-2.aspx -->
|
|
<CustomAction Id="SetARPINSTALLLOCATION" Property="ARPINSTALLLOCATION" Value="[INSTALLDIR]" />
|
|
<InstallExecuteSequence>
|
|
<Custom Action="SetARPINSTALLLOCATION" After="InstallValidate">
|
|
NOT Installed
|
|
</Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
<!-- Merge in C runtime -->
|
|
<DirectoryRef Id="TARGETDIR">
|
|
<Merge Id="VCRedist90" SourceFile="C:\Program Files (x86)\Common Files\Merge Modules\Microsoft_VC90_CRT_x86.msm" DiskId="1" Language="0"/>
|
|
</DirectoryRef>
|
|
<Feature Id="VCRedist90" Title="Visual C++ 9.0 Runtime" AllowAdvertise="no" Display="hidden" Level="1">
|
|
<MergeRef Id="VCRedist90"/>
|
|
</Feature>
|
|
|
|
<!-- Launch app after upgrade -->
|
|
<Property Id="LAUNCH" Value="yes" />
|
|
<CustomAction Id="DoLaunch"
|
|
Directory="INSTALLDIR"
|
|
ExeCommand='"[INSTALLDIR]EDMarketConnector.exe"'
|
|
Return="asyncNoWait"
|
|
Execute="deferred"
|
|
Impersonate="yes"
|
|
/>
|
|
<InstallExecuteSequence>
|
|
<!-- http://alekdavis.blogspot.co.uk/2013/05/wix-woes-what-is-your-installer-doing.html -->
|
|
<Custom Action="DoLaunch" Before="InstallFinalize">
|
|
NOT Installed AND LAUNCH ~= "yes"
|
|
</Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
|
|
<!-- Generate with `heat.exe dir dist.win32 -gg -sfrag -suid -out foo.wxs` -->
|
|
<!-- Sadly too late for auto-generated Component UUIDs -->
|
|
|
|
<Directory Id="ProgramFilesFolder">
|
|
<Directory Id="INSTALLDIR" Name="$(var.PRODUCTNAME)">
|
|
<Component Id="MainExecutable" Guid="{D33BB66E-9664-4AB6-A044-3004B50A09B0}">
|
|
<File Id="EDMarketConnector.exe" KeyPath="yes" Source="SourceDir\EDMarketConnector.exe" />
|
|
<Shortcut Id="MainExeShortcut" Directory="ProgramMenuFolder" Name="$(var.PRODUCTLONGNAME)" Description="Downloads station data from Elite: Dangerous" WorkingDirectory="INSTALLDIR" Icon="EDMarketConnector.exe" IconIndex="0" Advertise="yes" />
|
|
</Component>
|
|
<Component Guid="{433C38E1-F736-4546-AA83-FCD8B0AAA39B}">
|
|
<File KeyPath="yes" Source="SourceDir\_ctypes.pyd" />
|
|
</Component>
|
|
<Component Guid="{45803711-A2A6-4DA8-8219-F625DE6DB33E}">
|
|
<File KeyPath="yes" Source="SourceDir\_hashlib.pyd" />
|
|
</Component>
|
|
<Component Guid="{52019FB5-952D-4BA4-A6E0-F3E214F14923}">
|
|
<File KeyPath="yes" Source="SourceDir\_socket.pyd" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\_sqlite3.pyd" />
|
|
</Component>
|
|
<Component Guid="{2EA8F0B6-A104-4D31-99F0-3535ACDC26A9}">
|
|
<File KeyPath="yes" Source="SourceDir\_ssl.pyd" />
|
|
</Component>
|
|
<Component Guid="{D2F0CDD2-E934-419F-BC99-445E8FD3AF24}">
|
|
<File KeyPath="yes" Source="SourceDir\_tkinter.pyd" />
|
|
</Component>
|
|
<Component Guid="{842DC919-EC3D-48EF-A6B3-9A81608E0FB9}">
|
|
<File KeyPath="yes" Source="SourceDir\bz2.pyd" />
|
|
</Component>
|
|
<Component Guid="{62DF41B7-0BE8-48F3-BB22-90E9201A6D8C}">
|
|
<File KeyPath="yes" Source="SourceDir\cacert.pem" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\commodity.csv" />
|
|
</Component>
|
|
<Component Guid="{6762E871-5FA1-4C2F-A3C9-6A9954CC018C}">
|
|
<File KeyPath="yes" Source="SourceDir\EDMarketConnector.ico" />
|
|
</Component>
|
|
<Component Guid="{9A0CB8A2-7167-492F-A185-0BDF7E9F5C01}">
|
|
<File KeyPath="yes" Source="SourceDir\EDMarketConnector.VisualElementsManifest.xml" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\EDMC.exe" />
|
|
</Component>
|
|
<Component Guid="{A18814B6-B491-42AB-A433-2AD66A823AD7}">
|
|
<File KeyPath="yes" Source="SourceDir\library.zip" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\modules.p" />
|
|
</Component>
|
|
<Component Guid="{87A99AAA-792F-4092-9D00-5106D99D00AD}">
|
|
<File KeyPath="yes" Source="SourceDir\pyexpat.pyd" />
|
|
</Component>
|
|
<Component Guid="{685773F2-78E4-4A16-BE0D-C7AB9575C856}">
|
|
<File KeyPath="yes" Source="SourceDir\python27.dll" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\rare_commodity.csv" />
|
|
</Component>
|
|
<Component Guid="{9DBAB544-E815-40A5-866A-391B68919344}">
|
|
<File KeyPath="yes" Source="SourceDir\select.pyd" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\ships.p" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\snd_good.wav" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\snd_bad.wav" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\sqlite3.dll" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\stations.p" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\systems.p" />
|
|
</Component>
|
|
<Component Guid="{30EEAD30-A43B-4A31-A209-450A8AD17AC2}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl85.dll" />
|
|
</Component>
|
|
<Component Guid="{CE5A6F3A-8F6B-4C16-BCDC-F1BB89C9F1AF}">
|
|
<File KeyPath="yes" Source="SourceDir\tk85.dll" />
|
|
</Component>
|
|
<Component Guid="{E8E3701A-8AA1-4D46-A56D-7AF08D6AFCD4}">
|
|
<File KeyPath="yes" Source="SourceDir\unicodedata.pyd" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\winsound.pyd" />
|
|
</Component>
|
|
<Component Guid="{3117D2CF-1D87-4B99-BE44-7BDDFE8C8E60}">
|
|
<File KeyPath="yes" Source="SourceDir\WinSparkle.dll" />
|
|
</Component>
|
|
<Directory Id="L10n" Name="L10n">
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\cs.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\de.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\es.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\fi.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\fr.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\hu.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\it.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\ja.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\lv.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\nl.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\pl.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\pt-BR.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\pt-PT.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\ru.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\sr-Latn.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\uk.strings" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\L10n\zh-Hans.strings" Name="zh-CN.strings" />
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="plugins" Name="plugins">
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\plugins\coriolis.py" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\plugins\eddb.py" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\plugins\edsm.py" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\plugins\edsy.py" />
|
|
</Component>
|
|
<Component Guid="*">
|
|
<File KeyPath="yes" Source="SourceDir\plugins\inara.py" />
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="tcl" Name="tcl">
|
|
<Directory Id="tcl8.5" Name="tcl8.5">
|
|
<Component Guid="{C085794D-6644-4915-B1C3-3060BE9E3F3B}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\auto.tcl" />
|
|
</Component>
|
|
<Component Guid="{E7EF4423-9B28-4267-A6C9-1C5F5F732054}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\clock.tcl" />
|
|
</Component>
|
|
<Component Guid="{28C0596D-8D38-4E62-BE6E-E3986E1EB854}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\history.tcl" />
|
|
</Component>
|
|
<Component Guid="{3E20540F-0017-40FA-94EC-A4407C0A9B3B}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\init.tcl" />
|
|
</Component>
|
|
<Component Guid="{D3750297-0753-433F-A20F-FCB309050DCE}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\package.tcl" />
|
|
</Component>
|
|
<Component Guid="{8686095A-7B3D-4352-B30C-497E3DAABD57}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\parray.tcl" />
|
|
</Component>
|
|
<Component Guid="{DAAAF7FC-8255-4564-B4F9-42865C1D1B74}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\safe.tcl" />
|
|
</Component>
|
|
<Component Id="tclIndex_1" Guid="{52C48E34-AE8C-4461-BB3D-817EF66E859A}">
|
|
<File Id="tclIndex_1" KeyPath="yes" Source="SourceDir\tcl\tcl8.5\tclIndex" />
|
|
</Component>
|
|
<Component Guid="{84CAEEAD-0290-4895-BEDB-6CB10B8BEECE}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\tm.tcl" />
|
|
</Component>
|
|
<Component Guid="{3D7917B8-E131-448F-9F2C-18705BB37313}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\word.tcl" />
|
|
</Component>
|
|
<Directory Id="opt0.4" Name="opt0.4">
|
|
<Component Guid="{D8E99FE8-AD1E-4E73-A566-6D88B7E5F07E}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tcl8.5\opt0.4\optparse.tcl" />
|
|
</Component>
|
|
<Component Id="pkgIndex.tcl_1" Guid="{9618212A-46A6-4982-AB85-599CEB0711EB}">
|
|
<File Id="pkgIndex.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tcl8.5\opt0.4\pkgIndex.tcl" />
|
|
</Component>
|
|
</Directory>
|
|
</Directory>
|
|
<Directory Id="tk8.5" Name="tk8.5">
|
|
<Component Guid="{FCB37425-AD3A-45DA-91D7-053AF7970C28}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\bgerror.tcl" />
|
|
</Component>
|
|
<Component Id="button.tcl_1" Guid="{149136E1-0EAE-42B2-8509-5B6A686B023B}">
|
|
<File Id="button.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tk8.5\button.tcl" />
|
|
</Component>
|
|
<Component Guid="{EAC4BD6C-40E9-4C64-A5F5-258D083D07C0}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\choosedir.tcl" />
|
|
</Component>
|
|
<Component Guid="{0E8924C5-7EA5-43AC-9C81-6F3029B462C8}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\clrpick.tcl" />
|
|
</Component>
|
|
<Component Guid="{7B5F5CA4-893A-480F-B6AF-C3E3A544DB8B}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\comdlg.tcl" />
|
|
</Component>
|
|
<Component Guid="{A8F00EE2-4094-4DFF-86BD-FE969D4D362A}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\console.tcl" />
|
|
</Component>
|
|
<Component Guid="{DFFA82C4-0949-41A3-868A-1BC4CF04CC76}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\dialog.tcl" />
|
|
</Component>
|
|
<Component Id="entry.tcl_1" Guid="{D3BD7C0B-06D7-4619-977B-F30908EF20ED}">
|
|
<File Id="entry.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tk8.5\entry.tcl" />
|
|
</Component>
|
|
<Component Guid="{DF8A00BF-91F1-44D8-B1D4-AB1104BFD1C9}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\focus.tcl" />
|
|
</Component>
|
|
<Component Guid="{A545EB30-9E1A-4C89-866B-974C99004065}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\license.terms" />
|
|
</Component>
|
|
<Component Guid="{A8F779C3-8947-4C8D-9611-83F1D05482A7}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\listbox.tcl" />
|
|
</Component>
|
|
<Component Guid="{E492B863-5AAA-4A2A-AC0B-10F2B3A90D89}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\menu.tcl" />
|
|
</Component>
|
|
<Component Guid="{9BBAC909-602C-443B-9EFE-6896D468BE3F}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\mkpsenc.tcl" />
|
|
</Component>
|
|
<Component Guid="{0F1A63FD-16BA-4603-8E9D-744BC4CD5C25}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\msgbox.tcl" />
|
|
</Component>
|
|
<Component Guid="{4EDE9077-0998-42D9-8510-E60440003628}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\obsolete.tcl" />
|
|
</Component>
|
|
<Component Guid="{10D09DFC-4B7D-4869-ACBC-53C864C54CD0}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\optMenu.tcl" />
|
|
</Component>
|
|
<Component Guid="{EA101ACF-9743-495F-B514-A28F78F23068}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\palette.tcl" />
|
|
</Component>
|
|
<Component Id="panedwindow.tcl_1" Guid="{7060F5A9-BAB5-4D15-A65E-04A71AE00A15}">
|
|
<File Id="panedwindow.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tk8.5\panedwindow.tcl" />
|
|
</Component>
|
|
<Component Id="pkgIndex.tcl_2" Guid="{5E2762E6-F8DE-43A9-A809-32AE03522482}">
|
|
<File Id="pkgIndex.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\pkgIndex.tcl" />
|
|
</Component>
|
|
<Component Guid="{DE3DA121-B02A-43AA-9D36-99A89F26B3B4}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\safetk.tcl" />
|
|
</Component>
|
|
<Component Id="scale.tcl_1" Guid="{7E371EB8-CBE1-4360-A1B8-08A54DEEFAE5}">
|
|
<File Id="scale.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tk8.5\scale.tcl" />
|
|
</Component>
|
|
<Component Guid="{AADDC754-698D-4439-82A1-4F47FE97FA94}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\scrlbar.tcl" />
|
|
</Component>
|
|
<Component Id="spinbox.tcl_1" Guid="{448FB04F-1719-4BE0-8192-9DB3551FF1CA}">
|
|
<File Id="spinbox.tcl_1" KeyPath="yes" Source="SourceDir\tcl\tk8.5\spinbox.tcl" />
|
|
</Component>
|
|
<Component Id="tclIndex_2" Guid="{CC6A73B5-7CBF-43F5-BA1D-67216081B7CD}">
|
|
<File Id="tclIndex_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\tclIndex" />
|
|
</Component>
|
|
<Component Guid="{AEAAB0BF-64DA-4729-8AA3-A964758524F2}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\tearoff.tcl" />
|
|
</Component>
|
|
<Component Guid="{DFCA1825-61D8-4613-A0DF-7FAFC9E8D0B7}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\text.tcl" />
|
|
</Component>
|
|
<Component Guid="{80245D25-A889-4EB2-9C9C-488AB3C32A32}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\tk.tcl" />
|
|
</Component>
|
|
<Component Guid="{50929058-A5C7-43E3-B5FE-B848A419CF93}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\tkfbox.tcl" />
|
|
</Component>
|
|
<Component Guid="{2B892993-9862-466F-A79B-F54246A9E7F2}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\unsupported.tcl" />
|
|
</Component>
|
|
<Component Guid="{F7B0AE86-0EA3-436D-83A0-61FB4AEBBDF8}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\xmfbox.tcl" />
|
|
</Component>
|
|
<Directory Id="ttk" Name="ttk">
|
|
<Component Guid="{153EA00B-70D3-45D5-B6C7-F900D15AF3C7}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\altTheme.tcl" />
|
|
</Component>
|
|
<Component Guid="{F97CA810-C233-4088-87FB-5DE062166893}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\aquaTheme.tcl" />
|
|
</Component>
|
|
<Component Id="button.tcl_2" Guid="{2C2F700C-7C62-4F5A-908C-A35B122A577B}">
|
|
<File Id="button.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\button.tcl" />
|
|
</Component>
|
|
<Component Guid="{9137EAD5-A5ED-4280-AB41-5B42CB76BE25}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\clamTheme.tcl" />
|
|
</Component>
|
|
<Component Guid="{B9D2363E-CBE6-4D6A-8AEC-8763FCF41309}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\classicTheme.tcl" />
|
|
</Component>
|
|
<Component Guid="{BB9DC352-388A-4424-B3A7-D0CC0799B0E8}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\combobox.tcl" />
|
|
</Component>
|
|
<Component Guid="{D5B1A052-87F1-44C9-A8D6-6FF78EC6453A}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\cursors.tcl" />
|
|
</Component>
|
|
<Component Guid="{2D4A6C0F-16CC-458F-936E-68F39BB51DC5}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\defaults.tcl" />
|
|
</Component>
|
|
<Component Id="entry.tcl_2" Guid="{5BBDDCE5-3165-431C-8A5F-88C090EB98DA}">
|
|
<File Id="entry.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\entry.tcl" />
|
|
</Component>
|
|
<Component Guid="{D0DACDE6-4F3A-4BC2-AE09-7BBF8C76ED74}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\fonts.tcl" />
|
|
</Component>
|
|
<Component Guid="{133F83FA-ACE2-44FF-B175-42F2E0A917A9}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\menubutton.tcl" />
|
|
</Component>
|
|
<Component Guid="{641B8DCD-E718-4757-84AB-6425D3CFDCD6}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\notebook.tcl" />
|
|
</Component>
|
|
<Component Id="panedwindow.tcl_2" Guid="{AF0A3619-F409-479B-A71E-1D2C08A5F510}">
|
|
<File Id="panedwindow.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\panedwindow.tcl" />
|
|
</Component>
|
|
<Component Guid="{3E9DE75A-FD32-4F7E-A3E7-59ABFBCBC9DF}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\progress.tcl" />
|
|
</Component>
|
|
<Component Id="scale.tcl_2" Guid="{165FED9E-A3F0-4005-8DA8-D25E4E144DD8}">
|
|
<File Id="scale.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\scale.tcl" />
|
|
</Component>
|
|
<Component Guid="{735AFCC5-A597-4292-B144-4DF8865B4200}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\scrollbar.tcl" />
|
|
</Component>
|
|
<Component Guid="{54AD42EB-7305-45AA-953C-574921E90BAD}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\sizegrip.tcl" />
|
|
</Component>
|
|
<Component Id="spinbox.tcl_2" Guid="{F4A91FAD-5F8D-4007-B38E-2C706E87770B}">
|
|
<File Id="spinbox.tcl_2" KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\spinbox.tcl" />
|
|
</Component>
|
|
<Component Guid="{FC12F75C-6EF1-4AD5-BF60-55FC5E825605}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\treeview.tcl" />
|
|
</Component>
|
|
<Component Guid="{947E3D83-15D1-44E5-B8D3-5EEBDD18B343}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\ttk.tcl" />
|
|
</Component>
|
|
<Component Guid="{D5534AC6-9A1B-4CE3-90E1-6B65D4FF86D6}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\utils.tcl" />
|
|
</Component>
|
|
<Component Guid="{198ADB32-56DD-4F29-B862-817DD6E92ECA}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\vistaTheme.tcl" />
|
|
</Component>
|
|
<Component Guid="{92589FA4-E08B-4E45-856E-F266D6290E2A}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\winTheme.tcl" />
|
|
</Component>
|
|
<Component Guid="{78CB3D2B-5032-445B-82C5-CFD32584A238}">
|
|
<File KeyPath="yes" Source="SourceDir\tcl\tk8.5\ttk\xpTheme.tcl" />
|
|
</Component>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Directory Id="ProgramMenuFolder" Name="Programs">
|
|
</Directory>
|
|
|
|
</Directory>
|
|
|
|
<Feature Id='Complete' Level='1'>
|
|
<ComponentRef Id="MainExecutable" />
|
|
<ComponentRef Id="_ctypes.pyd" />
|
|
<ComponentRef Id="_hashlib.pyd" />
|
|
<ComponentRef Id="_socket.pyd" />
|
|
<ComponentRef Id="_sqlite3.pyd" />
|
|
<ComponentRef Id="_ssl.pyd" />
|
|
<ComponentRef Id="_tkinter.pyd" />
|
|
<ComponentRef Id="bz2.pyd" />
|
|
<ComponentRef Id="cacert.pem" />
|
|
<ComponentRef Id="coriolis.py" />
|
|
<ComponentRef Id="commodity.csv" />
|
|
<ComponentRef Id="cs.strings" />
|
|
<ComponentRef Id="de.strings" />
|
|
<ComponentRef Id="EDMarketConnector.ico" />
|
|
<ComponentRef Id="EDMarketConnector.VisualElementsManifest.xml" />
|
|
<ComponentRef Id="EDMC.exe" />
|
|
<ComponentRef Id="eddb.py" />
|
|
<ComponentRef Id="edsm.py" />
|
|
<ComponentRef Id="edsy.py" />
|
|
<ComponentRef Id="es.strings" />
|
|
<ComponentRef Id="fi.strings" />
|
|
<ComponentRef Id="fr.strings" />
|
|
<ComponentRef Id="hu.strings" />
|
|
<ComponentRef Id="inara.py" />
|
|
<ComponentRef Id="it.strings" />
|
|
<ComponentRef Id="ja.strings" />
|
|
<ComponentRef Id="library.zip" />
|
|
<ComponentRef Id="lv.strings" />
|
|
<ComponentRef Id="modules.p" />
|
|
<ComponentRef Id="nl.strings" />
|
|
<ComponentRef Id="pl.strings" />
|
|
<ComponentRef Id="pt_BR.strings" />
|
|
<ComponentRef Id="pt_PT.strings" />
|
|
<ComponentRef Id="pyexpat.pyd" />
|
|
<ComponentRef Id="python27.dll" />
|
|
<ComponentRef Id="rare_commodity.csv" />
|
|
<ComponentRef Id="ru.strings" />
|
|
<ComponentRef Id="select.pyd" />
|
|
<ComponentRef Id="ships.p" />
|
|
<ComponentRef Id="sr_Latn.strings" />
|
|
<ComponentRef Id="snd_good.wav" />
|
|
<ComponentRef Id="snd_bad.wav" />
|
|
<ComponentRef Id="sqlite3.dll" />
|
|
<ComponentRef Id="stations.p" />
|
|
<ComponentRef Id="systems.p" />
|
|
<ComponentRef Id="tcl85.dll" />
|
|
<ComponentRef Id="tk85.dll" />
|
|
<ComponentRef Id="uk.strings" />
|
|
<ComponentRef Id="unicodedata.pyd" />
|
|
<ComponentRef Id="winsound.pyd" />
|
|
<ComponentRef Id="WinSparkle.dll" />
|
|
<ComponentRef Id="zh_CN.strings" />
|
|
<ComponentRef Id="auto.tcl" />
|
|
<ComponentRef Id="clock.tcl" />
|
|
<ComponentRef Id="history.tcl" />
|
|
<ComponentRef Id="init.tcl" />
|
|
<ComponentRef Id="package.tcl" />
|
|
<ComponentRef Id="parray.tcl" />
|
|
<ComponentRef Id="safe.tcl" />
|
|
<ComponentRef Id="tclIndex_1" />
|
|
<ComponentRef Id="tm.tcl" />
|
|
<ComponentRef Id="word.tcl" />
|
|
<ComponentRef Id="optparse.tcl" />
|
|
<ComponentRef Id="pkgIndex.tcl_1" />
|
|
<ComponentRef Id="bgerror.tcl" />
|
|
<ComponentRef Id="button.tcl_1" />
|
|
<ComponentRef Id="choosedir.tcl" />
|
|
<ComponentRef Id="clrpick.tcl" />
|
|
<ComponentRef Id="comdlg.tcl" />
|
|
<ComponentRef Id="console.tcl" />
|
|
<ComponentRef Id="dialog.tcl" />
|
|
<ComponentRef Id="entry.tcl_1" />
|
|
<ComponentRef Id="focus.tcl" />
|
|
<ComponentRef Id="license.terms" />
|
|
<ComponentRef Id="listbox.tcl" />
|
|
<ComponentRef Id="menu.tcl" />
|
|
<ComponentRef Id="mkpsenc.tcl" />
|
|
<ComponentRef Id="msgbox.tcl" />
|
|
<ComponentRef Id="obsolete.tcl" />
|
|
<ComponentRef Id="optMenu.tcl" />
|
|
<ComponentRef Id="palette.tcl" />
|
|
<ComponentRef Id="panedwindow.tcl_1" />
|
|
<ComponentRef Id="pkgIndex.tcl_2" />
|
|
<ComponentRef Id="safetk.tcl" />
|
|
<ComponentRef Id="scale.tcl_1" />
|
|
<ComponentRef Id="scrlbar.tcl" />
|
|
<ComponentRef Id="spinbox.tcl_1" />
|
|
<ComponentRef Id="tclIndex_2" />
|
|
<ComponentRef Id="tearoff.tcl" />
|
|
<ComponentRef Id="text.tcl" />
|
|
<ComponentRef Id="tk.tcl" />
|
|
<ComponentRef Id="tkfbox.tcl" />
|
|
<ComponentRef Id="unsupported.tcl" />
|
|
<ComponentRef Id="xmfbox.tcl" />
|
|
<ComponentRef Id="altTheme.tcl" />
|
|
<ComponentRef Id="aquaTheme.tcl" />
|
|
<ComponentRef Id="button.tcl_2" />
|
|
<ComponentRef Id="clamTheme.tcl" />
|
|
<ComponentRef Id="classicTheme.tcl" />
|
|
<ComponentRef Id="combobox.tcl" />
|
|
<ComponentRef Id="cursors.tcl" />
|
|
<ComponentRef Id="defaults.tcl" />
|
|
<ComponentRef Id="entry.tcl_2" />
|
|
<ComponentRef Id="fonts.tcl" />
|
|
<ComponentRef Id="menubutton.tcl" />
|
|
<ComponentRef Id="notebook.tcl" />
|
|
<ComponentRef Id="panedwindow.tcl_2" />
|
|
<ComponentRef Id="progress.tcl" />
|
|
<ComponentRef Id="scale.tcl_2" />
|
|
<ComponentRef Id="scrollbar.tcl" />
|
|
<ComponentRef Id="sizegrip.tcl" />
|
|
<ComponentRef Id="spinbox.tcl_2" />
|
|
<ComponentRef Id="treeview.tcl" />
|
|
<ComponentRef Id="ttk.tcl" />
|
|
<ComponentRef Id="utils.tcl" />
|
|
<ComponentRef Id="vistaTheme.tcl" />
|
|
<ComponentRef Id="winTheme.tcl" />
|
|
<ComponentRef Id="xpTheme.tcl" />
|
|
</Feature>
|
|
|
|
</Product>
|
|
</Wix>
|
|
|
|
<!-- Local Variables: -->
|
|
<!-- tab-width: 4 -->
|
|
<!-- End: -->
|