From c1390a83c021859065fb0243e6e5e9711a87e226 Mon Sep 17 00:00:00 2001 From: rainwater Date: Wed, 4 Sep 2002 13:10:53 +0000 Subject: [PATCH] Added UberSplash to the installer git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@902 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/makensis.nsi | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi index fa1af81d..92c79a0c 100644 --- a/Examples/makensis.nsi +++ b/Examples/makensis.nsi @@ -182,12 +182,15 @@ Section "Splash" SecContribSplash NoShortCuts: SectionEnd -Section "Splash w/transparency" SecContribSplashT +Section "UberSplash w/transparency" SecContribSplashT SectionIn 1 2 SetOutPath $INSTDIR\Bin SetOverwrite try - File ..\Bin\magiclime.txt - File ..\Bin\magiclime.exe + File ..\Bin\UberSplash.exe + SetOutPath $INSTDIR\Contrib\UberSplash + SetOverwrite try + File ..\Contrib\UberSplash\splash.* + File ..\Contrib\UberSplash\*.txt SectionEnd Section "Zip2Exe" SecContribZ2E @@ -485,8 +488,7 @@ Section Uninstall Delete $INSTDIR\Plugins\installoptions.dll Delete $INSTDIR\Bin\splash.txt Delete $INSTDIR\Bin\splash.exe - Delete $INSTDIR\Bin\magiclime.exe - Delete $INSTDIR\Bin\magiclime.txt + Delete $INSTDIR\Bin\UberSplash.exe Delete $INSTDIR\Plugins\nsisdl.dll Delete $INSTDIR\Bin\MakeLangID.exe Delete $INSTDIR\Plugins\LangDLL.dll