From 3a42d47bae5add36b30278a8b82a52c4277a3fb1 Mon Sep 17 00:00:00 2001 From: onryo Date: Tue, 21 Feb 2023 20:44:34 +0000 Subject: [PATCH 1/3] Update MXE dependencies --- advanced/cross-compile-silent-dragon-for-windows-with-mxe.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/advanced/cross-compile-silent-dragon-for-windows-with-mxe.md b/advanced/cross-compile-silent-dragon-for-windows-with-mxe.md index 8148e9a..476e33f 100644 --- a/advanced/cross-compile-silent-dragon-for-windows-with-mxe.md +++ b/advanced/cross-compile-silent-dragon-for-windows-with-mxe.md @@ -33,6 +33,7 @@ sudo apt-get install \ libc6-dev-i386 \ libgdk-pixbuf2.0-dev \ libltdl-dev \ + libgl-dev \ libssl-dev \ libtool-bin \ libxml-parser-perl \ @@ -42,7 +43,9 @@ sudo apt-get install \ p7zip-full \ patch \ perl \ - python \ + python3 \ + python3-mako \ + python3-pkg-resources \ ruby \ sed \ unzip \ From 6a28b91bceeb2062aa11e5a1fb9cf50c121805b1 Mon Sep 17 00:00:00 2001 From: fekt Date: Thu, 2 Mar 2023 04:01:29 +0000 Subject: [PATCH 2/3] Upgrade notes for new versions/releases --- ...ting-silent-dragon-msi-installer-for-windows-with-wixl.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md b/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md index 32ee769..5fcafa1 100644 --- a/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md +++ b/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md @@ -98,6 +98,11 @@ Below is a copy of the contents of the `SilentDragon-1.3.0.wxs` file Note that G ``` +## Upgrade notes for new versions/releases +(https://www.firegiant.com/wix/tutorial/upgrades-and-modularization/) + +In order for new versions of the .msi to upgrade existing/older versions that may have been installed, the `Version` attribute needs to be incremented or changed to the new version and a new GUID for `Product` id needs to generated (c8fae41c-889b-4621-b343-76491cd91b1c in above example). + ## Build MSI file from WiX source file ``` wixl -v SilentDragon-1.3.0.wxs From b670d951c5d36dc3b32f3a42ae784c6b9133b9e8 Mon Sep 17 00:00:00 2001 From: fekt Date: Thu, 2 Mar 2023 04:02:18 +0000 Subject: [PATCH 3/3] Update 'advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md' --- ...reating-silent-dragon-msi-installer-for-windows-with-wixl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md b/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md index 5fcafa1..20a63ce 100644 --- a/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md +++ b/advanced/creating-silent-dragon-msi-installer-for-windows-with-wixl.md @@ -101,7 +101,7 @@ Below is a copy of the contents of the `SilentDragon-1.3.0.wxs` file Note that G ## Upgrade notes for new versions/releases (https://www.firegiant.com/wix/tutorial/upgrades-and-modularization/) -In order for new versions of the .msi to upgrade existing/older versions that may have been installed, the `Version` attribute needs to be incremented or changed to the new version and a new GUID for `Product` id needs to generated (c8fae41c-889b-4621-b343-76491cd91b1c in above example). +In order for new versions of the .msi to upgrade existing/older versions that may have been installed, the `Version` attribute needs to be incremented or changed to the new version and a new GUID for `Product` id needs to be generated (c8fae41c-889b-4621-b343-76491cd91b1c in above example). ## Build MSI file from WiX source file ```