main.wxs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
  3. xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
  4. <?ifdef JpIsSystemWide ?>
  5. <?define JpInstallScope="perMachine"?>
  6. <?else?>
  7. <?define JpInstallScope="perUser"?>
  8. <?endif?>
  9. <?define JpProductLanguage=1033 ?>
  10. <?define JpInstallerVersion=200 ?>
  11. <?define JpCompressedMsi=yes ?>
  12. <?ifdef JpAllowUpgrades ?>
  13. <?define JpUpgradeVersionOnlyDetectUpgrade="no"?>
  14. <?else?>
  15. <?define JpUpgradeVersionOnlyDetectUpgrade="yes"?>
  16. <?endif?>
  17. <?ifdef JpAllowDowngrades ?>
  18. <?define JpUpgradeVersionOnlyDetectDowngrade="no"?>
  19. <?else?>
  20. <?define JpUpgradeVersionOnlyDetectDowngrade="yes"?>
  21. <?endif?>
  22. <!-- Cryptomator defaults -->
  23. <?define IconFileEncryptedData= "Cryptomator-Vault.ico" ?>
  24. <?define ProgIdContentType= "application/vnd.cryptomator.encrypted" ?>
  25. <?define CloseApplicationTarget= "cryptomator.exe" ?>
  26. <?include $(var.JpConfigDir)/overrides.wxi ?>
  27. <Product
  28. Id="$(var.JpProductCode)"
  29. Name="$(var.JpAppName)"
  30. Language="$(var.JpProductLanguage)"
  31. Version="$(var.JpAppVersion)"
  32. Manufacturer="$(var.JpAppVendor)"
  33. UpgradeCode="$(var.JpProductUpgradeCode)">
  34. <Package
  35. Description="$(var.JpAppDescription)"
  36. Manufacturer="$(var.JpAppVendor)"
  37. InstallerVersion="$(var.JpInstallerVersion)"
  38. Compressed="$(var.JpCompressedMsi)"
  39. InstallScope="$(var.JpInstallScope)" Platform="x64"
  40. />
  41. <Media Id="1" Cabinet="Data.cab" EmbedCab="yes" />
  42. <Upgrade Id="$(var.JpProductUpgradeCode)">
  43. <UpgradeVersion
  44. OnlyDetect="$(var.JpUpgradeVersionOnlyDetectUpgrade)"
  45. Property="JP_UPGRADABLE_FOUND"
  46. Maximum="$(var.JpAppVersion)"
  47. MigrateFeatures="yes"
  48. IncludeMaximum="yes" /> <!-- TODO: check if this needs to be set to yes-->
  49. <UpgradeVersion
  50. OnlyDetect="$(var.JpUpgradeVersionOnlyDetectDowngrade)"
  51. Property="JP_DOWNGRADABLE_FOUND"
  52. Minimum="$(var.JpAppVersion)"
  53. MigrateFeatures="yes"
  54. IncludeMinimum="$(var.JpUpgradeVersionOnlyDetectDowngrade)" />
  55. </Upgrade>
  56. <?ifndef JpAllowUpgrades ?>
  57. <CustomAction Id="JpDisallowUpgrade" Error="!(loc.DisallowUpgradeErrorMessage)" />
  58. <?endif?>
  59. <?ifndef JpAllowDowngrades ?>
  60. <CustomAction Id="JpDisallowDowngrade" Error="!(loc.DowngradeErrorMessage)" />
  61. <?endif?>
  62. <?ifndef SkipCryptomatorLegacyCheck ?>
  63. <!-- Block installation if innosetup entry of Cryptomator is found -->
  64. <Property Id="OLDEXEINSTALLER">
  65. <RegistrySearch Id="InnoSetupInstallation" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Cryptomator_is1" Type="raw" Name="DisplayName" />
  66. </Property>
  67. <!-- TODO: localize -->
  68. <Condition Message="A lower version of [ProductName] is already installed. Uninstall it first and then start the setup again. Setup will now exit.">
  69. <![CDATA[Installed OR NOT OLDEXEINSTALLER]]>
  70. </Condition>
  71. <?endif?>
  72. <!-- Cryptomator uses UNIX Sockets, which are supported starting with Windows 10 v1803-->
  73. <Property Id="WINDOWSBUILDNUMBER" Secure="yes">
  74. <RegistrySearch Id="BuildNumberSearch" Root="HKLM" Key="SOFTWARE\Microsoft\Windows NT\CurrentVersion" Name="CurrentBuildNumber" Type="raw" />
  75. </Property>
  76. <Condition Message="This application requires Windows 10 version 1803 (build 17134) or newer.">
  77. <![CDATA[Installed OR (WINDOWSBUILDNUMBER >= 17134)]]>
  78. </Condition>
  79. <!-- Non-Opening ProgID -->
  80. <DirectoryRef Id="INSTALLDIR">
  81. <Component Win64="yes" Id="nonStartingProgID" >
  82. <File Id="IconFileForEncryptedData" KeyPath="yes" Source="$(env.JP_WIXWIZARD_RESOURCES)\$(var.IconFileEncryptedData)" Name="$(var.IconFileEncryptedData)"></File>
  83. <ProgId Id="$(var.JpAppName).Encrypted.1" Description="$(var.JpAppName) Encrypted Data" Icon="IconFileForEncryptedData" IconIndex="0">
  84. <Extension Id="c9r" Advertise="no" ContentType="$(var.ProgIdContentType)">
  85. <MIME ContentType="$(var.ProgIdContentType)" Default="yes"></MIME>
  86. </Extension>
  87. <Extension Id="c9s" Advertise="no" ContentType="$(var.ProgIdContentType)"/>
  88. </ProgId>
  89. </Component>
  90. </DirectoryRef>
  91. <!-- Standard required root -->
  92. <Directory Id="TARGETDIR" Name="SourceDir"/>
  93. <Feature Id="DefaultFeature" Title="!(loc.MainFeatureTitle)" Level="1">
  94. <ComponentGroupRef Id="Shortcuts"/>
  95. <ComponentGroupRef Id="Files"/>
  96. <ComponentGroupRef Id="FileAssociations"/>
  97. <!-- Ref to additional ProgIDs -->
  98. <ComponentRef Id="nonStartingProgID" />
  99. </Feature>
  100. <CustomAction Id="JpSetARPINSTALLLOCATION" Property="ARPINSTALLLOCATION" Value="[INSTALLDIR]" />
  101. <CustomAction Id="JpSetARPCOMMENTS" Property="ARPCOMMENTS" Value="$(var.JpAppDescription)" />
  102. <CustomAction Id="JpSetARPCONTACT" Property="ARPCONTACT" Value="$(var.JpAppVendor)" />
  103. <CustomAction Id="JpSetARPSIZE" Property="ARPSIZE" Value="$(var.JpAppSizeKb)" />
  104. <?ifdef JpHelpURL ?>
  105. <CustomAction Id="JpSetARPHELPLINK" Property="ARPHELPLINK" Value="$(var.JpHelpURL)" />
  106. <?endif?>
  107. <?ifdef JpAboutURL ?>
  108. <CustomAction Id="JpSetARPURLINFOABOUT" Property="ARPURLINFOABOUT" Value="$(var.JpAboutURL)" />
  109. <?endif?>
  110. <?ifdef JpUpdateURL ?>
  111. <CustomAction Id="JpSetARPURLUPDATEINFO" Property="ARPURLUPDATEINFO" Value="$(var.JpUpdateURL)" />
  112. <?endif?>
  113. <!-- WebDAV patches -->
  114. <CustomAction Id="PatchWebDAV" Impersonate="no" ExeCommand="[INSTALLDIR]patchWebDAV.bat" Directory="INSTALLDIR" Execute="deferred" Return="asyncWait" />
  115. <!-- Special Settings migration for 1.7.0,. Should be removed eventually, for more info, see ../contrib/version170-migrate-settings.ps1-->
  116. <CustomAction Id="V170MigrateSettings" Impersonate="no" ExeCommand="[INSTALLDIR]version170-migrate-settings.bat" Directory="INSTALLDIR" Execute="deferred" Return="asyncWait" />
  117. <!-- Running App detection and exit -->
  118. <Property Id="FOUNDRUNNINGAPP" Admin="yes"/>
  119. <util:CloseApplication
  120. Target="$(var.CloseApplicationTarget)"
  121. Id="Close$(var.JpAppName)"
  122. CloseMessage="no"
  123. RebootPrompt="no"
  124. PromptToContinue="yes"
  125. Description="A running instance of $(var.JpAppName) is found, using files marked for update. Please close it to continue."
  126. Property="FOUNDRUNNINGAPP"
  127. >
  128. </util:CloseApplication>
  129. <CustomAction Id="FailOnRunningApp" Error="Installation aborted, because files marked for update are used by a running instance of $(var.JpAppName)."/>
  130. <?ifdef JpIcon ?>
  131. <Property Id="ARPPRODUCTICON" Value="JpARPPRODUCTICON"/>
  132. <Icon Id="JpARPPRODUCTICON" SourceFile="$(var.JpIcon)"/>
  133. <?endif?>
  134. <UIRef Id="JpUI"/>
  135. <InstallExecuteSequence>
  136. <Custom Action="JpSetARPINSTALLLOCATION" After="CostFinalize">Not Installed</Custom>
  137. <Custom Action="JpSetARPCOMMENTS" After="CostFinalize">Not Installed</Custom>
  138. <Custom Action="JpSetARPCONTACT" After="CostFinalize">Not Installed</Custom>
  139. <Custom Action="JpSetARPSIZE" After="CostFinalize">Not Installed</Custom>
  140. <?ifdef JpHelpURL ?>
  141. <Custom Action="JpSetARPHELPLINK" After="CostFinalize">Not Installed</Custom>
  142. <?endif?>
  143. <?ifdef JpAboutURL ?>
  144. <Custom Action="JpSetARPURLINFOABOUT" After="CostFinalize">Not Installed</Custom>
  145. <?endif?>
  146. <?ifdef JpUpdateURL ?>
  147. <Custom Action="JpSetARPURLUPDATEINFO" After="CostFinalize">Not Installed</Custom>
  148. <?endif?>
  149. <?ifndef JpAllowUpgrades ?>
  150. <Custom Action="JpDisallowUpgrade" After="FindRelatedProducts">JP_UPGRADABLE_FOUND</Custom>
  151. <?endif?>
  152. <?ifndef JpAllowDowngrades ?>
  153. <Custom Action="JpDisallowDowngrade" After="FindRelatedProducts">JP_DOWNGRADABLE_FOUND</Custom>
  154. <?endif?>
  155. <!-- Check and fail if Cryptomator is running -->
  156. <Custom Action="WixCloseApplications" Before="InstallValidate"></Custom>
  157. <Custom Action="FailOnRunningApp" After="WixCloseApplications" >FOUNDRUNNINGAPP</Custom>
  158. <RemoveExistingProducts After="InstallValidate"/> <!-- Moved from CostInitialize, due to WixCloseApplications -->
  159. <Custom Action="PatchWebDAV" After="InstallFiles">NOT Installed OR REINSTALL</Custom>
  160. <Custom Action="V170MigrateSettings" After="InstallFiles">NOT Installed OR REINSTALL</Custom>
  161. </InstallExecuteSequence>
  162. <WixVariable Id="WixUIBannerBmp" Value="$(env.JP_WIXWIZARD_RESOURCES)\banner.bmp" />
  163. <WixVariable Id="WixUIDialogBmp" Value="$(env.JP_WIXWIZARD_RESOURCES)\background.bmp" />
  164. </Product>
  165. </Wix>