From d879f5845a1b69d3f8884840e3f74ac35ce398d7 Mon Sep 17 00:00:00 2001 From: joostverburg Date: Thu, 5 Dec 2002 16:28:15 +0000 Subject: [PATCH] added tiny ui git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1887 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/makensis.nsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi index d745be36..df0a3c84 100644 --- a/Examples/makensis.nsi +++ b/Examples/makensis.nsi @@ -179,6 +179,13 @@ SubSection "Extra User Interfaces" SecContribUIs SetOutPath "$INSTDIR\Contrib\UIs" File "..\Contrib\UIs\default.exe" SectionEnd + + Section "Tiny User Interface" SecContribTinyUI + SectionIn 1 2 + SetOutPath "$INSTDIR\Contrib\UIs" + File "..\Contrib\UIs\sdbarker_tiny.exe" + SectionEnd + SubSectionEnd Section "Extra Icons" SecContribIcons @@ -707,6 +714,7 @@ SectionEnd !insertmacro MUI_DESCRIPTION_TEXT ${SecContribUIs} "User interface designs that can be used to change the installer look and feel" !insertmacro MUI_DESCRIPTION_TEXT ${SecContribModernUI} "A modern user interface for NSIS installers like the wizards of recent Windows versions" !insertmacro MUI_DESCRIPTION_TEXT ${SecContribDefaultUI} "The default NSIS user interface which you can customize to make your own UI" + !insertmacro MUI_DESCRIPTION_TEXT ${SecContribTinyUI} "A tiny version of the default UI" !insertmacro MUI_DESCRIPTION_TEXT ${SecContribIcons} "Icon files contributed by other NSIS developers" !insertmacro MUI_DESCRIPTION_TEXT ${SecContribLang} "Language files used to support multiple languages in an installer" !insertmacro MUI_DESCRIPTION_TEXT ${SecContribPlugins} "Useful plugins that extend NSIS's functionality"