summaryrefslogtreecommitdiff
path: root/src/installer.nsi
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-11-27 17:32:00 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-11-27 17:32:00 +0000
commit75f7ac97df0be37b83c658d9d6e26aad819ffed5 (patch)
treeb428fd9ccd72ed06273bad151908b4131b437152 /src/installer.nsi
parentc4b85ca0613d484512b7d516d459d00d041d046f (diff)
always use -O2 for the windows build, exclude desktop icons and man pages, request admin rights when the installer is started (to prevent access denied to program files on vista/win7)
Diffstat (limited to 'src/installer.nsi')
-rw-r--r--src/installer.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/installer.nsi b/src/installer.nsi
index 733fcdf..d02aecd 100644
--- a/src/installer.nsi
+++ b/src/installer.nsi
@@ -10,7 +10,7 @@ Name "Transmission Remote GTK"
; The file to write
!ifndef REV
-OutFile "transmission-remote-gtk-0.7.2-installer.exe"
+OutFile "transmission-remote-gtk-0.7.3-installer.exe"
!else
OutFile "transmission-remote-gtk-${REV}-installer.exe"
!endif
@@ -18,7 +18,7 @@ OutFile "transmission-remote-gtk-${REV}-installer.exe"
; The default installation directory
!define ProgramFilesDir "Transmission Remote GTK"
-RequestExecutionLevel user
+RequestExecutionLevel admin
;--------------------------------