Skip to content

Commit

Permalink
fix newversiondetected issue on windows installer
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpalide committed Dec 19, 2023
1 parent 4e5baac commit 2284b07
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts/win_installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@
<Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>

<Upgrade Id="cd7955bc-304e-470f-9c24-eb9f429a8085">
<UpgradeVersion Minimum="1.0.0" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="1.0.0" IncludeMinimum="yes" IncludeMaximum="no"
Property="OLDERVERSIONBEINGUPGRADED"/>
<UpgradeVersion Minimum="1.3.14" OnlyDetect="yes" IncludeMaximum="yes" Property="NEWERVERSIONDETECTED"/>=
</Upgrade>
<Condition Message="A newer version of this software is already installed.">NOT NEWERVERSIONDETECTED</Condition>
<Condition Message="A newer version of this software is already installed.">NEWERVERSIONDETECTED</Condition>

<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="$(var.Program_Files)">
Expand Down

0 comments on commit 2284b07

Please sign in to comment.