[Spambayes-checkins] spambayes/Outlook2000/installer spambayes_addin.iss, 1.4, 1.5

Mark Hammond mhammond at users.sourceforge.net
Tue Jul 22 00:25:18 EDT 2003


Update of /cvsroot/spambayes/spambayes/Outlook2000/installer
In directory sc8-pr-cvs1:/tmp/cvs-serv25921

Modified Files:
	spambayes_addin.iss 
Log Message:
Version 5 of the binary, and give the user the option of
continuing installation if we don't think Outlook is installed.


Index: spambayes_addin.iss
===================================================================
RCS file: /cvsroot/spambayes/spambayes/Outlook2000/installer/spambayes_addin.iss,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** spambayes_addin.iss	21 Jul 2003 06:22:55 -0000	1.4
--- spambayes_addin.iss	22 Jul 2003 06:25:16 -0000	1.5
***************
*** 5,10 ****
  [Setup]
  AppName=Spambayes Outlook Addin
! AppVerName=Spambayes Outlook Addin 0.4
! AppVersion=0.4
  DefaultDirName={pf}\Spambayes Outlook Addin
  DefaultGroupName=Spambayes Outlook Addin
--- 5,10 ----
  [Setup]
  AppName=Spambayes Outlook Addin
! AppVerName=Spambayes Outlook Addin 0.5
! AppVersion=0.5
  DefaultDirName={pf}\Spambayes Outlook Addin
  DefaultGroupName=Spambayes Outlook Addin
***************
*** 26,32 ****
    if not RegKeyExists( HKCU, 'Software\Microsoft\Office\Outlook') then
      begin
!       MsgBox('Outlook appears to not be installed' + #13 + #13 + 'Please correct this and restart the installation',
!              mbInformation, MB_OK);
!       Result := false;
      end;
  end;
--- 26,36 ----
    if not RegKeyExists( HKCU, 'Software\Microsoft\Office\Outlook') then
      begin
!       Result := MsgBox(
!             'Outlook appears to not be installed.' + #13 + #13 +
!             'This addin only works with Microsoft Outlook 2000 and later - it' + #13 +
!             'does not work with Outlook express.' + #13 + #13 +
!             'If you know that Outlook is installed, you may with to continue.' + #13 + #13 +
!             'Continue with installation?',
!             mbConfirmation, MB_YESNO) = idYes;
      end;
  end;





More information about the Spambayes-checkins mailing list