mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Both Steam and Uplay library logic would error when the library was installed, but didn't have any installed games. Thanks to @joeymanson23 for the report. Fixes #4. Adds a LOT more logging to the Steam and Uplay libraries to allow for remote troubleshooting via the log file, especially if the logging settings are set to TRACE. Also fixed the long standing issue for being able to install two copies of DisplayMagician of the same version. Now the installer will prevent that from happening!
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Include>
|
|
<!--
|
|
Versioning. These have to be changed for upgrades.
|
|
It's not enough to just include newer files.
|
|
-->
|
|
<?define MajorVersion="1" ?>
|
|
<?define MinorVersion="0" ?>
|
|
<?define BuildVersion="3" ?>
|
|
<!-- Revision is NOT used by WiX in the upgrade procedure -->
|
|
<!-- Full version number to display -->
|
|
<?define VersionNumber="$(var.MajorVersion).$(var.MinorVersion).$(var.BuildVersion)" ?>
|
|
|
|
<?define PreviousMajorVersion="1" ?>
|
|
<?define PreviousMinorVersion="0" ?>
|
|
<?define PreviousBuildVersion="2" ?>
|
|
<!-- Revision is NOT used by WiX in the upgrade procedure -->
|
|
<!-- Full version number to display -->
|
|
<?define PreviousVersionNumber="$(var.PreviousMajorVersion).$(var.PreviousMinorVersion).$(var.PreviousBuildVersion)" ?>
|
|
|
|
<!--
|
|
Upgrade code HAS to be the same for all updates.
|
|
Once you've chosen it don't change it.
|
|
-->
|
|
<?define UpgradeCode="33E22B4C-982F-4B02-A3DE-085693742DB5" ?>
|
|
<!--
|
|
Path to the resources directory. resources don't really need to be included
|
|
in the project structure but I like to include them for for clarity
|
|
-->
|
|
<?define ResourcesDir="$(var.ProjectDir)Resources" ?>
|
|
<!--
|
|
The name of your application exe file. This will be used to kill the process when updating
|
|
and creating the desktop shortcut
|
|
-->
|
|
<?define ExeProcessName="DisplayMagician" ?>
|
|
|
|
</Include> |