From: <jgr...@us...> - 2003-02-26 01:18:23
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv12450 Modified Files: installer.nsi Log Message: Merge patch 691405 that improves the splash screen of the installer so that it does not mention system files since we don't touch system files Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** installer.nsi 25 Feb 2003 01:48:51 -0000 1.24 --- installer.nsi 26 Feb 2003 01:18:16 -0000 1.25 *************** *** 1,532 **** ! ; ! ; Copyright (c) 2001-2003 John Graham-Cumming ! ; ! ! ; Modified to work with NSIS v2.0b1 ! ! !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.18.1" ! ! !include "MUI.nsh" [...1036 lines suppressed...] ! DeleteRegKey HKLM SOFTWARE\POPFile ! ! ; if $INSTDIR was removed, skip these next ones ! IfFileExists $INSTDIR 0 Removed ! MessageBox MB_YESNO|MB_ICONQUESTION \ ! "Do you want to remove all files in your POPFile directory? (If you have anything \ ! you created that you want to keep, click No)" IDNO Removed ! Delete $INSTDIR\*.* ; this would be skipped if the user hits no ! RMDir /r $INSTDIR ! IfFileExists $INSTDIR 0 Removed ! MessageBox MB_OK|MB_ICONEXCLAMATION \ ! "Note: $INSTDIR could not be removed." ! Removed: ! ! !insertmacro MUI_UNFINISHHEADER ! ! SectionEnd ! ! ;eof ! |