~klight/bzr-svn/win32-installer

« back to all changes in this revision

Viewing changes to installer/bzrsvn-setup.nsi

  • Committer: klight at walkertechnical
  • Date: 2007-12-26 16:09:33 UTC
  • Revision ID: klight@walkertechnical.com-20071226160933-bgwgx53yawg6s9ko
Renamed the Win32 NSIS script
Updated the Win32 NSIS script to indicated subversion-1.4.6 bindings
Changed the extention library (bindings) file list in the README

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
!define PRODUCT_VERSION "0.4.5"
3
3
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
4
4
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
5
 
!define SVN_VERSION "1.4.3" 
 
5
!define SVN_VERSION "1.4.6"
 
6
!define BUILD "0"
6
7
 
7
8
SetCompressor /SOLID lzma
8
9
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
9
 
OutFile "bzr-svn-${PRODUCT_VERSION}-svn-${SVN_VERSION}-setup.exe"
 
10
OutFile "bzr-svn-${PRODUCT_VERSION}-svn-${SVN_VERSION}-setup-${BUILD}.exe"
10
11
ShowInstDetails show
11
12
ShowUnInstDetails show
12
13