From: Brian S. <xue...@us...> - 2006-02-06 14:48:12
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13543 Modified Files: Tag: b0_22_2 pfi-library.nsh Log Message: Updated to support SQLite Database Status Check utility's "size" report. Index: pfi-library.nsh =================================================================== RCS file: /cvsroot/popfile/windows/pfi-library.nsh,v retrieving revision 1.53.4.2 retrieving revision 1.53.4.3 diff -C2 -d -r1.53.4.2 -r1.53.4.3 *** pfi-library.nsh 19 Dec 2005 11:45:36 -0000 1.53.4.2 --- pfi-library.nsh 6 Feb 2006 14:48:03 -0000 1.53.4.3 *************** *** 5,14 **** # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2005 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms version 2 of the GNU General Public License as # published by the Free Software Foundation. # --- 5,14 ---- # to create (and test) the POPFile Windows installer. # ! # Copyright (c) 2003-2006 John Graham-Cumming # # This file is part of POPFile # # POPFile is free software; you can redistribute it and/or modify it ! # under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # *************** *** 35,47 **** # (3) BACKUP defined in backup.nsi (POPFile 'User Data' Backup utility) # (4) DBSTATUS defined in test\pfidbstatus.nsi (POPFile SQLite Database Status Check) ! # (5) INSTALLER defined in installer.nsi (the main installer program, setup.exe) ! # (6) MSGCAPTURE defined in msgcapture.nsi (used to capture POPFile's console messages) ! # (7) PFIDIAG defined in test\pfidiag.nsi (helps diagnose installer-related problems) ! # (8) RESTORE defined in restore.nsi (POPFile 'User Data' Restore utility) ! # (9) RUNPOPFILE defined in runpopfile.nsi (simple front-end for popfile.exe) ! # (10) RUNSQLITE defined in runsqlite.nsi (simple front-end for sqlite.exe/sqlite3.exe) ! # (11) STOP_POPFILE defined in stop_popfile.nsi (the 'POPFile Silent Shutdown' utility) ! # (12) TRANSLATOR defined in test\translator.nsi (main installer translations testbed) ! # (13) TRANSLATOR_AUW defined in test\transAUW.nsi ('Add POPFile User' translations testbed) #-------------------------------------------------------------------------- --- 35,48 ---- # (3) BACKUP defined in backup.nsi (POPFile 'User Data' Backup utility) # (4) DBSTATUS defined in test\pfidbstatus.nsi (POPFile SQLite Database Status Check) ! # (5) IMAPUPDATER defined in add-ons\updateimap.nsi (POPFile 'IMAP Updater' wizard) ! # (6) INSTALLER defined in installer.nsi (the main installer program, setup.exe) ! # (7) MSGCAPTURE defined in msgcapture.nsi (used to capture POPFile's console messages) ! # (8) PFIDIAG defined in test\pfidiag.nsi (helps diagnose installer-related problems) ! # (9) RESTORE defined in restore.nsi (POPFile 'User Data' Restore utility) ! # (10) RUNPOPFILE defined in runpopfile.nsi (simple front-end for popfile.exe) ! # (11) RUNSQLITE defined in runsqlite.nsi (simple front-end for sqlite.exe/sqlite3.exe) ! # (12) STOP_POPFILE defined in stop_popfile.nsi (the 'POPFile Silent Shutdown' utility) ! # (13) TRANSLATOR defined in test\translator.nsi (main installer translations testbed) ! # (14) TRANSLATOR_AUW defined in test\transAUW.nsi ('Add POPFile User' translations testbed) #-------------------------------------------------------------------------- *************** *** 57,61 **** #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.1.9" #-------------------------------------------------------------------------- --- 58,62 ---- #-------------------------------------------------------------------------- ! !define C_PFI_LIBRARY_VERSION "0.1.12" #-------------------------------------------------------------------------- *************** *** 451,459 **** ; 4.01 4.72.2106.8 ; 4.01 SP1 4.72.3110.3 ! ; 5 5.00.2014.0216 ; 5.5 5.50.4134.0100 ; 6.0 Public Preview 6.0.2462.0000 ; 6.0 Public Preview Refresh 6.0.2479.0006 ! ; 6.0 RTM 6.0.2600.0000 StrCpy ${L_TEMP} ${L_REGDATA} 1 --- 452,460 ---- ; 4.01 4.72.2106.8 ; 4.01 SP1 4.72.3110.3 ! ; 5 5.00.2014.0216 ; 5.5 5.50.4134.0100 ; 6.0 Public Preview 6.0.2462.0000 ; 6.0 Public Preview Refresh 6.0.2479.0006 ! ; 6.0 RTM 6.0.2600.0000 StrCpy ${L_TEMP} ${L_REGDATA} 1 *************** *** 1293,1297 **** !macroend ! !ifdef ADDSSL | BACKUP | INSTALLER | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_DumpLog --- 1294,1298 ---- !macroend ! !ifdef ADDSSL | BACKUP | IMAPUPDATER | INSTALLER | RESTORE #-------------------------------------------------------------------------- # Installer Function: PFI_DumpLog *************** *** 4143,4147 **** !macroend ! !ifndef DBSTATUS & PFIDIAG & RUNPOPFILE & RUNSQLITE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrCheckDecimal --- 4144,4148 ---- !macroend ! !ifndef PFIDIAG & RUNPOPFILE & RUNSQLITE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrCheckDecimal *************** *** 4226,4230 **** !macroend ! !ifndef ADDSSL & DBSTATUS & MSGCAPTURE & RUNSQLITE & STOP_POPFILE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrStr --- 4227,4231 ---- !macroend ! !ifndef ADDSSL & DBSTATUS & IMAPUPDATER & MSGCAPTURE & RUNSQLITE & STOP_POPFILE & TRANSLATOR #-------------------------------------------------------------------------- # Installer Function: PFI_StrStr |