From d71a5790a94cd56b6e033b656b4892ec31f14b9d Mon Sep 17 00:00:00 2001 From: Moulinier Florent <39991826+moulinierf@users.noreply.github.com> Date: Mon, 19 Sep 2022 17:21:04 +0200 Subject: [PATCH] feat: add nsis option `removeDefaultUninstallWelcomePage` to remove the default uninstall welcome page (#7141) --- .changeset/tasty-pianos-jump.md | 5 +++++ docs/generated/NsisOptions.md | 1 + packages/app-builder-lib/scheme.json | 10 ++++++++++ packages/app-builder-lib/src/targets/nsis/Defines.ts | 2 ++ .../app-builder-lib/src/targets/nsis/NsisTarget.ts | 4 ++++ .../app-builder-lib/src/targets/nsis/nsisOptions.ts | 6 ++++++ .../templates/nsis/assistedInstaller.nsh | 8 +++++--- 7 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 .changeset/tasty-pianos-jump.md diff --git a/.changeset/tasty-pianos-jump.md b/.changeset/tasty-pianos-jump.md new file mode 100644 index 0000000000..5edc287986 --- /dev/null +++ b/.changeset/tasty-pianos-jump.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": minor +--- + +feat: add nsis option to remove the default uninstall welcome page diff --git a/docs/generated/NsisOptions.md b/docs/generated/NsisOptions.md index 0d6b355581..4583dffc73 100644 --- a/docs/generated/NsisOptions.md +++ b/docs/generated/NsisOptions.md @@ -27,6 +27,7 @@
  • installerSidebar String | “undefined” - assisted installer only. MUI_WELCOMEFINISHPAGE_BITMAP, relative to the build resources or to the project directory. Defaults to build/installerSidebar.bmp or ${NSISDIR}\\Contrib\\Graphics\\Wizard\\nsis3-metro.bmp. Image size 164 × 314 pixels.
  • uninstallerSidebar String | “undefined” - assisted installer only. MUI_UNWELCOMEFINISHPAGE_BITMAP, relative to the build resources or to the project directory. Defaults to installerSidebar option or build/uninstallerSidebar.bmp or build/installerSidebar.bmp or ${NSISDIR}\\Contrib\\Graphics\\Wizard\\nsis3-metro.bmp
  • uninstallDisplayName = ${productName} ${version} String - The uninstaller display name in the control panel.
  • +
  • removeDefaultUninstallWelcomePage = false Boolean - assisted installer only. remove the default uninstall welcome page