Banner - shows some text before installation starts

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1830 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-11-24 18:50:31 +00:00
parent b295ba4ac5
commit 4828e0d292
6 changed files with 232 additions and 0 deletions

View file

@ -199,6 +199,15 @@ SectionEnd
SubSection "Plugins" SecContribPlugins
Section "Banner" SecContribBanner
SectionIn 1 2
SetOutPath $INSTDIR\Plugins
File ..\Plugins\Banner.dll
SetOutPath $INSTDIR\Contrib\Banner
File ..\Contrib\Banner\Readme.txt
File ..\Contrib\Banner\Example.nsi
SectionEnd
Section "Language DLL" SecContribLangDLL
SectionIn 1 2
SetOutPath $INSTDIR\Plugins
@ -362,6 +371,14 @@ SectionEnd
SubSection "Plugins" SecContribPluginsS
Section "Banner Source" SecContribBannerS
SectionIn 1
SetOutPath $INSTDIR\Contrib\Banner
File ..\Contrib\Banner\Banner.dsw
File ..\Contrib\Banner\Banner.dsp
File ..\Contrib\Banner\Banner.c
SectionEnd
Section "Language DLL Source" SecContribLangDLLS
SectionIn 1
SetOutPath $INSTDIR\Contrib\LangDLL
@ -604,6 +621,13 @@ Section -post
Push BgImage
Call AddWorkspaceToStartMenu
; Banner
Push Banner
Call AddReadmeToStartMenu
Push Banner
Call AddWorkspaceToStartMenu
; System
Push System
Call AddReadmeToStartMenu
@ -644,6 +668,8 @@ SectionEnd
!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"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribPluginsS} "Source code for plugins"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribBanner} "Plugin that letes you show a banner before installation starts"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribBannerS} "Source code to plugin that letes you show a banner before installation starts"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribLangDLL} "Plugin that lets you add a language select dialog to your installer"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribLangDLLS} "Source code to plugin that lets you add a language select dialog to your installer"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContribnsExec} "Plugin that executes console programs and prints its output in the NSIS log window or hides it"