Skip to content

Commit

Permalink
Update Windows installer version
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Jun 17, 2024
1 parent 1c63ddd commit 0e80661
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/scripts/package-Windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ if [[ $1 == "x64" ]]; then
X64BitMode="x64"
fi

VERSION=0.8.4
VERSION=0.9.0

rm -f ./plugdata.wxs
rm -f ./plugdata.wxs
cat > ./plugdata.wxs <<-EOL
<?xml version="1.0"?>
<?define ProductVersion = "$VERSION" ?>
Expand All @@ -25,7 +25,7 @@ cat > ./plugdata.wxs <<-EOL
<?endif ?>
<Wix
xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="\$(var.ProductUpgradeCode)"
<Product Id="*" UpgradeCode="\$(var.ProductUpgradeCode)"
Name="plugdata" Version="\$(var.ProductVersion)" Manufacturer="Timothy Schoen" Language="1033">
<Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package"/>
<Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>
Expand All @@ -52,9 +52,9 @@ cat > ./plugdata.wxs <<-EOL
<Directory Id="ProgramMenuFolder">
<Directory Id="ProgramMenuSubfolder" Name="plugdata">
<Component Id="STANDALONE_SHORTCUTS" Guid="8f2ac8c2-b3bc-4d3c-8097-b62b5eed28ae">
<Shortcut Id="ApplicationShortcut1" Name="plugdata" Description="plugdata"
<Shortcut Id="ApplicationShortcut1" Name="plugdata" Description="plugdata"
Target="[INSTALLDIR]plugdata.exe" WorkingDirectory="INSTALLDIR"/>
<RegistryValue Root="HKCU" Key="Software\plugdata\plugdata"
<RegistryValue Root="HKCU" Key="Software\plugdata\plugdata"
Name="installed" Type="integer" Value="1" KeyPath="yes"/>
<RemoveFolder Id="ProgramMenuSubfolder" On="uninstall"/>
</Component>
Expand Down

0 comments on commit 0e80661

Please sign in to comment.