|
From: <xue...@us...> - 2003-07-01 03:19:50
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv30751
Modified Files:
installer.nsi
Log Message:
{NOTEPAD} is global not local, so it must be initialised earlier.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.78
retrieving revision 1.79
diff -C2 -d -r1.78 -r1.79
*** installer.nsi 30 Jun 2003 17:45:27 -0000 1.78
--- installer.nsi 1 Jul 2003 03:19:41 -0000 1.79
***************
*** 259,265 ****
!insertmacro MUI_INSTALLOPTIONS_EXTRACT_AS "${RELEASE_NOTES}" "release.txt"
MessageBox MB_YESNO "Display POPFile Release Notes ?$\r$\n$\r$\n\
'Yes' recommended if you are upgrading." IDNO exit
- SearchPath ${NOTEPAD} notepad.exe
StrCmp ${NOTEPAD} "" use_file_association
ExecWait 'notepad.exe "$PLUGINSDIR\release.txt"'
--- 259,265 ----
!insertmacro MUI_INSTALLOPTIONS_EXTRACT_AS "${RELEASE_NOTES}" "release.txt"
+ SearchPath ${NOTEPAD} notepad.exe
MessageBox MB_YESNO "Display POPFile Release Notes ?$\r$\n$\r$\n\
'Yes' recommended if you are upgrading." IDNO exit
StrCmp ${NOTEPAD} "" use_file_association
ExecWait 'notepad.exe "$PLUGINSDIR\release.txt"'
|