From 859b599c88aca140c85582c731def50c20f3b531 Mon Sep 17 00:00:00 2001 From: s3cody Date: Tue, 21 Jul 2026 09:04:23 +0000 Subject: [PATCH] docs: update renamed MSI image options --- docs/packaging/installer.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/packaging/installer.mdx b/docs/packaging/installer.mdx index 29b8044..4b9fb80 100644 --- a/docs/packaging/installer.mdx +++ b/docs/packaging/installer.mdx @@ -43,8 +43,12 @@ The `--instLocation` option controls where the MSI will install: | `--instLicense {path}` | License agreement (`.txt`, `.md`, or `.rtf`) | | `--instReadme {path}` | Readme message (`.txt` or `.md`) | | `--instConclusion {path}` | Conclusion message (`.txt` or `.md`) | -| `--msiBanner {path}` | Top banner image for MSI dialogs (`.bmp`, 493x58) | -| `--msiLogo {path}` | Background logo for MSI dialogs (`.bmp`, 493x312) | +| `--msiTopBanner {path}` | Narrow banner across the top of MSI dialogs (`.bmp`, 493x58) | +| `--msiDialogBackground {path}` | Full background of the MSI welcome and completion dialogs (`.bmp`, 493x312) | + +:::note +The MSI image options were renamed from `--msiBanner` and `--msiLogo`. Update existing packaging scripts to use `--msiTopBanner` and `--msiDialogBackground`, respectively. +::: #### Directory Structure The MSI installs the same directory layout as `Setup.exe` (see [the canonical layout on the Windows page](operating-systems/windows.mdx)), under `{installFolder}` instead of `%LocalAppData%\{packId}`.