diff --git a/Contrib/Modern UI/Readme.html b/Contrib/Modern UI/Readme.html index c4d3e9ff..3cd47e04 100644 --- a/Contrib/Modern UI/Readme.html +++ b/Contrib/Modern UI/Readme.html @@ -218,9 +218,9 @@ will also help you to learn more about the Modern UI.

License Page Settings

MUI_LICENSEPAGE_TEXT text [buttontext]
- Texts to display on the inner dialog of the license page. See syntax information about setting multiple texts.

+ Texts to display on the license page. See syntax information about setting multiple texts.

MUI_LICENSEPAGE_TEXT_TOP text
- Text to display on the top of the inner dialog of the license page.

+ Text to display on the top of the license page.

MUI_LICENSEPAGE_CHECKBOX
Display a checkbox the user has to check to agree with the license terms.

@@ -240,7 +240,7 @@ will also help you to learn more about the Modern UI.

Components Page Settings

MUI_COMPONENTSPAGE_TEXT text [subtext] [subtext2]
- Texts to display on the inner dialog of the components page. See syntax information about setting multiple texts.

+ Texts to display on the components page. See syntax information about setting multiple texts.

MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_TITLE text
Text to display on the of the top of the description box.

MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_INFO text
@@ -249,7 +249,7 @@ will also help you to learn more about the Modern UI.

Directory Page Settings

MUI_DIRECTORYPAGE_TEXT text [subtext]
- Texts to display on the inner dialog of the directory page. See syntax information about setting multiple texts.

+ Texts to display on the directory page. See syntax information about setting multiple texts.

MUI_DIRECTORYPAGE_VARIABLE variable
Variable in which to store the selected folder
Default: $INSTDIR

@@ -266,7 +266,7 @@ will also help you to learn more about the Modern UI.

defines and define the values of the page of which you want to write the value, before inserting the MUI_STARTMENU_WRITE_BEGIN macro.

MUI_STARTMENUPAGE_TEXT text
- Text to display on the inner dialog of the Start Menu folder page.

+ Text to display on the Start Menu folder page.

MUI_STARTMENUPAGE_TEXT_CHECKBOX text
Text to display next to the checkbox to disable the Start Menu folder creation.

MUI_STARTMENUPAGE_VARIABLE variable
@@ -364,6 +364,11 @@ will also help you to learn more about the Modern UI.

Define this option to save some space if you are not using the /REBOOTOK flag or SetRebootFlag.

+

Uninstall Confirm Page Settings

+
+

MUI_UNCONFIMPAGE_TEXT text [subtext]
+ Texts to display on the uninstall confirm page. See syntax information about setting multiple texts.

+

Advanced Page Settings

You can add your custom code to the page functions of Modern UI pages. diff --git a/Contrib/Modern UI/System.nsh b/Contrib/Modern UI/System.nsh index 849023ba..b968fe43 100644 --- a/Contrib/Modern UI/System.nsh +++ b/Contrib/Modern UI/System.nsh @@ -864,6 +864,11 @@ Var MUI_TEMP2 Caption " " + !ifdef MUI_UNCONFIRMPAGE_TEXT + UninstallText ${MUI_UNCONFIRMPAGE_TEXT} + !undef MUI_UNCONFIRMPAGE_TEXT + !endif + PageExEnd !insertmacro MUI_UNFUNCTION_CONFIRMPAGE un.mui.ConfirmPre_${MUI_UNIQUEID} un.mui.ConfirmShow_${MUI_UNIQUEID} un.mui.ConfirmLeave_${MUI_UNIQUEID}