[ActiveLock-Development] CVS: installer ActiveLock.nsi,1.8,1.9
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2004-07-19 12:13:06
|
Update of /cvsroot/activelock/installer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16163 Modified Files: ActiveLock.nsi Log Message: Batch commit for 2.0.10 Index: ActiveLock.nsi =================================================================== RCS file: /cvsroot/activelock/installer/ActiveLock.nsi,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ActiveLock.nsi 2 Jul 2004 04:15:35 -0000 1.8 +++ ActiveLock.nsi 19 Jul 2004 12:12:56 -0000 1.9 @@ -32,6 +32,8 @@ ; 05.16.04 - th2tran - Need to remove alcrypto.dll during uninstall. 2.0.7 ; 05.24.04 - th2tran - Include VB Tutorial.chm ; 07.01.04 - th2tran - Include alugenc +; - Added ALUGEN shortcut to program group +; 07.18.04 - th2tran - Added Release Notes shortcut to program group. 2.0.10 ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -40,7 +42,7 @@ ;General !define VER_MAJOR 2 -!define VER_MINOR 0.8 +!define VER_MINOR 0.10 !define VER ${VER_MAJOR}.${VER_MINOR} !define ALUTIL_SRC_ROOT "..\alutil" !define AL_SRC_ROOT "..\activelock" @@ -201,16 +203,18 @@ !ifndef NO_STARTMENUSHORTCUTS CreateDirectory $SMPROGRAMS\ActiveLock - IfFileExists "$INSTDIR\bin\ALTestApp.exe" "" +2 - CreateShortCut "$SMPROGRAMS\ActiveLock\Example 1.lnk" "$INSTDIR\bin\ALTestApp.exe" "" + CreateShortCut "$SMPROGRAMS\ActiveLock\Release Notes.lnk" "$INSTDIR\ReleaseNotes.htm" + + IfFileExists "$INSTDIR\bin\alugen.exe" "" +2 + CreateShortCut "$SMPROGRAMS\ActiveLock\ALUGEN.lnk" "$INSTDIR\bin\alugen.exe" "" WriteINIStr "$SMPROGRAMS\ActiveLock\ActiveLock Development Site.url" "InternetShortcut" "URL" "http://activelock.sourceforge.net/" - CreateShortCut "$SMPROGRAMS\ActiveLock\Uninstall ActiveLock.lnk" "$INSTDIR\uninst.exe" CreateShortCut "$SMPROGRAMS\ActiveLock\API Documentation.lnk" "$INSTDIR\bin\activelock2.chm" IfFileExists "$INSTDIR\Docs\VBTutorial.chm" "" +2 CreateShortCut "$SMPROGRAMS\ActiveLock\VB Tutorial.lnk" "$INSTDIR\Docs\VBTutorial.chm" "" + CreateShortCut "$SMPROGRAMS\ActiveLock\Uninstall ActiveLock.lnk" "$INSTDIR\uninst.exe" !endif SectionEnd |