From: Brian S. <xue...@us...> - 2005-03-23 14:20:23
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5123 Modified Files: adduser-Version.nsh adduser.nsi Log Message: Remove references to the QuickStart guide (it has been superseded by the wiki). Make a backup copy of pfi-run.bat (for reference). Index: adduser-Version.nsh =================================================================== RCS file: /cvsroot/popfile/windows/adduser-Version.nsh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** adduser-Version.nsh 5 Mar 2005 14:48:24 -0000 1.3 --- adduser-Version.nsh 23 Mar 2005 14:20:13 -0000 1.4 *************** *** 7,11 **** #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.71" #-------------------------------------------------------------------------- --- 7,11 ---- #-------------------------------------------------------------------------- ! !define C_PFI_VERSION "0.2.72" #-------------------------------------------------------------------------- Index: adduser.nsi =================================================================== RCS file: /cvsroot/popfile/windows/adduser.nsi,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** adduser.nsi 5 Mar 2005 14:48:25 -0000 1.75 --- adduser.nsi 23 Mar 2005 14:20:14 -0000 1.76 *************** *** 1116,1119 **** --- 1116,1125 ---- WriteUninstaller "$G_USERDIR\uninstalluser.exe" + ; Delete obsolete START MENU entries + + Delete "$SMPROGRAMS\${C_PFI_PRODUCT}\Manual.url" + Delete "$SMPROGRAMS\${C_PFI_PRODUCT}\Support\POPFile Manual.url" + Delete "$SMPROGRAMS\${C_PFI_PRODUCT}\QuickStart Guide.url" + ; Create the START MENU entries *************** *** 1173,1180 **** "InternetShortcut" "URL" "http://${C_UI_URL}:$G_GUI/shutdown" - SetFileAttributes "$SMPROGRAMS\${C_PFI_PRODUCT}\QuickStart Guide.url" NORMAL - WriteINIStr "$SMPROGRAMS\${C_PFI_PRODUCT}\QuickStart Guide.url" \ - "InternetShortcut" "URL" "file://$G_ROOTDIR/manual/en/manual.html" - SetFileAttributes "$SMPROGRAMS\${C_PFI_PRODUCT}\FAQ.url" NORMAL --- 1179,1182 ---- *************** *** 1740,1743 **** --- 1742,1750 ---- SetDetailsPrint listonly + ; Make a backup copy in case the user has customised the one we made earlier + ; (or in case we have now changed to a different POPFile installation) + + !insertmacro PFI_BACKUP_123_DP "$G_USERDIR" "pfi-run.bat" + Call PFI_GetDateTimeStamp Pop ${L_TIMESTAMP} |