aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2023-10-20 12:44:57 -0700
committerMicah Lee <micah@micahflee.com>2023-10-20 12:44:57 -0700
commit1020121c33840c4bbe9ba38d71839a27d9ac0c65 (patch)
tree496d90d5f99f256f5b2f31afca4855f543f8ffea
parentf623cf609de385abdb6a2a21a15c975991c27c61 (diff)
downloadonionshare-1020121c33840c4bbe9ba38d71839a27d9ac0c65.tar.gz
onionshare-1020121c33840c4bbe9ba38d71839a27d9ac0c65.zip
Finish making the WiX installer 64-bit
-rw-r--r--desktop/scripts/build-windows.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop/scripts/build-windows.py b/desktop/scripts/build-windows.py
index f890054f..9579b81d 100644
--- a/desktop/scripts/build-windows.py
+++ b/desktop/scripts/build-windows.py
@@ -117,6 +117,7 @@ def wix_build_dir_xml(root, data):
"Component",
Id="ApplicationShortcuts",
Guid="539e7de8-a124-4c09-aa55-0dd516aad7bc",
+ Win64="yes",
)
ET.SubElement(
component_el,
@@ -152,6 +153,7 @@ def wix_build_components_xml(root, data):
"Component",
Id=subdata["component_id"],
Guid=subdata["component_guid"],
+ Win64="yes",
)
for filename in subdata["files"]:
file_el = ET.SubElement(
@@ -218,10 +220,11 @@ def msi_package(build_path, msi_path, product_update_code):
Keywords="Installer",
Description="OnionShare $(var.ProductVersion) Installer",
Manufacturer="Micah Lee, et al.",
- InstallerVersion="100",
+ InstallerVersion="200",
Languages="1033",
Compressed="yes",
SummaryCodepage="1252",
+ Platform="x64",
)
ET.SubElement(product_el, "Media", Id="1", Cabinet="product.cab", EmbedCab="yes")
ET.SubElement(