From: Brian S. <xue...@us...> - 2005-02-18 17:06:18
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23668 Modified Files: msgcapture.nsi Log Message: The new "verbose" option has been changed from --verbose=1 to --verbose and now that the database upgrade messages are generated more frequently the installer timeout has been reduced from 30 to 15 seconds. Index: msgcapture.nsi =================================================================== RCS file: /cvsroot/popfile/windows/msgcapture.nsi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** msgcapture.nsi 22 Jan 2005 20:47:45 -0000 1.9 --- msgcapture.nsi 18 Feb 2005 17:06:08 -0000 1.10 *************** *** 94,98 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.59" !define C_OUTFILE "msgcapture.exe" --- 94,98 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.60" !define C_OUTFILE "msgcapture.exe" *************** *** 100,104 **** ; The timeout used when the installer calls this utility to monitor the SQL database upgrade ! !define C_INSTALLER_TIMEOUT 30 ;-------------------------------------------------------------------------- --- 100,104 ---- ; The timeout used when the installer calls this utility to monitor the SQL database upgrade ! !define C_INSTALLER_TIMEOUT 15 ;-------------------------------------------------------------------------- *************** *** 374,378 **** !define L_TRAYICON $R5 ; system tray icon enabled ("i" ) or disabled ("") flag !define L_OPTIONS $R4 ; POPFile 0.23.0 no longer displays startup messages by default ! ; so we use the --verbose=1 option to turn them back on SetDetailsPrint textonly --- 374,378 ---- !define L_TRAYICON $R5 ; system tray icon enabled ("i" ) or disabled ("") flag !define L_OPTIONS $R4 ; POPFile 0.23.0 no longer displays startup messages by default ! ; so we use the --verbose option to turn them back on SetDetailsPrint textonly *************** *** 438,442 **** StrCpy ${L_OPTIONS} "" IfFileExists "${L_PFI_ROOT}\POPFile\Database.pm" 0 look_for_exe ! StrCpy ${L_OPTIONS} "--verbose=1" look_for_exe: --- 438,442 ---- StrCpy ${L_OPTIONS} "" IfFileExists "${L_PFI_ROOT}\POPFile\Database.pm" 0 look_for_exe ! StrCpy ${L_OPTIONS} "--verbose" look_for_exe: |