[ActiveLock-Development] CVS: installer ActiveLock.nsi,1.6,1.7
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2004-05-16 18:43:07
|
Update of /cvsroot/activelock/installer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30057 Modified Files: ActiveLock.nsi Log Message: Changes for 2.0.7. See change comments inside file. Index: ActiveLock.nsi =================================================================== RCS file: /cvsroot/activelock/installer/ActiveLock.nsi,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ActiveLock.nsi 18 Apr 2004 02:05:39 -0000 1.6 +++ ActiveLock.nsi 16 May 2004 18:42:58 -0000 1.7 @@ -25,6 +25,11 @@ ; 04.10.04 - th2tran - alcrypto.dll now goes in Windows System directory. ; - included stdafx.cpp in alcrypto source distribution. ; 04.17.04 - th2tran - included MFC sample app +; 04.23.04 - th2tran - ALTestApp was missing modRegistryAPIs.bas +; - MFC sample was missing resource files +; 04.28.04 - th2tran - SecCore section was doing a RMDir /r "$SMPROGRAMS\${ASC}" right off the bat. +; What the heck for? This is soooo dangerous. +; 05.16.04 - th2tran - Need to remove alcrypto.dll during uninstall. 2.0.7 ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -33,7 +38,7 @@ ;General !define VER_MAJOR 2 -!define VER_MINOR 0.5 +!define VER_MINOR 0.7 !define VER ${VER_MAJOR}.${VER_MINOR} !define ALUTIL_SRC_ROOT "..\alutil" !define AL_SRC_ROOT "..\activelock" @@ -114,7 +119,6 @@ Section "ActiveLock Development System (required)" SecCore SectionIn 1 2 3 RO - RMDir /r "$SMPROGRAMS\${ASC}" ; Stuff that goes to the install root SetOutPath $INSTDIR File "${AL_SRC_ROOT}\License.txt" @@ -158,7 +162,7 @@ File ${AL_SRC_ROOT}\Examples\Example1\ALTestApp.vbp File ${AL_SRC_ROOT}\Examples\Example1\frmMain.frm File ${AL_SRC_ROOT}\Examples\Example1\frmMain.frx - File ${AL_SRC_ROOT}\Examples\Example1\modMain.bas + File ${AL_SRC_ROOT}\Examples\Example1\*.bas File ${AL_SRC_ROOT}\Examples\Example1\atViewPort.ctl File ${AL_SRC_ROOT}\Examples\Example1\atViewPort.ctx File ${AL_SRC_ROOT}\Examples\Example1\atDisplay.RES @@ -174,6 +178,10 @@ File ${AL_SRC_ROOT}\Examples\MFC\*.dsw File ${AL_SRC_ROOT}\Examples\MFC\*.reg File ${AL_SRC_ROOT}\Examples\MFC\*.odl + SetOutPath $INSTDIR\Examples\MFC\res + File ${AL_SRC_ROOT}\Examples\MFC\res\*.rc2 + File ${AL_SRC_ROOT}\Examples\MFC\res\*.ico + File ${AL_SRC_ROOT}\Examples\MFC\res\*.bmp SectionEnd !ifndef NO_STARTMENUSHORTCUTS @@ -330,6 +338,8 @@ DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ActiveLock" DeleteRegKey HKLM "SOFTWARE\${ASC}\ActiveLock2" + Delete $SYSDIR\alcrypto.dll + RMDir /r $SMPROGRAMS\ActiveLock Delete $INSTDIR\License.txt Delete $INSTDIR\ReleaseNotes.htm |