|
From: <xue...@us...> - 2003-06-22 17:53:00
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv5267
Modified Files:
installer.nsi
Log Message:
Add 'Version Information' to the installer and uninstaller EXE files.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -d -r1.71 -r1.72
*** installer.nsi 22 Jun 2003 15:57:21 -0000 1.71
--- installer.nsi 22 Jun 2003 17:52:57 -0000 1.72
***************
*** 25,28 ****
--- 25,48 ----
!include "MUI.nsh"
+ #--------------------------------------------------------------------------
+ # Version Information settings (for the installer EXE and uninstaller EXE)
+ #--------------------------------------------------------------------------
+
+ ; 'VIProductVersion' format is X.X.X.X where X is a number in range 0 to 65535
+ ; representing the following values: Major.Minor.Release.Build
+
+ VIProductVersion "0.19.0.0"
+
+ VIAddVersionKey "ProductName" "POPFile"
+ VIAddVersionKey "Comments" "POPFile Homepage: http:// popfile.sourceforge.net"
+ VIAddVersionKey "CompanyName" "POPFile Team"
+ # VIAddVersionKey "LegalTrademarks" "POPFile"
+ VIAddVersionKey "LegalCopyright" "© 2001-2003 John Graham-Cumming"
+ VIAddVersionKey "FileDescription" "POPFile Automatic email classification"
+ VIAddVersionKey "FileVersion" "${MUI_VERSION}"
+
+ VIAddVersionKey "Build Type" "CVS Build (Experimental)"
+ VIAddVersionKey "Build Date" "${__DATE__} @ ${__TIME__}"
+
#----------------------------------------------------------------------------------------
# CBP Configuration Data (to override defaults, un-comment the lines below and modify them)
***************
*** 1297,1303 ****
Function ShowReadMe
- !define L_TEMP $R9
- Push ${L_TEMP}
-
StrCmp ${NOTEPAD} "" use_file_association
Exec 'notepad.exe "$INSTDIR\${README}"'
--- 1317,1320 ----
***************
*** 1308,1314 ****
exit:
- Pop ${L_TEMP}
-
- !undef L_TEMP
FunctionEnd
--- 1325,1328 ----
|