diff options
author | sr55 <[email protected]> | 2009-08-09 17:42:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-09 17:42:18 +0000 |
commit | 79e381141a579d027f8f37aa992b9c2a710dd20c (patch) | |
tree | 1d6e2bb6f2f58fc4780552818737188ce37c82fa | |
parent | 15e340ccdb725fe0523bab0a56ba3ee9dcd89694 (diff) |
WinGui:
- The installer script didn't get updated in my last checkin. (2755)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2759 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/Installer/Installer.nsi | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/win/C#/Installer/Installer.nsi b/win/C#/Installer/Installer.nsi index 38d33fb61..5f0cad7b9 100644 --- a/win/C#/Installer/Installer.nsi +++ b/win/C#/Installer/Installer.nsi @@ -8,7 +8,8 @@ ; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Handbrake"
-!define PRODUCT_VERSION "SVN 2592 Snapshot"
+!define PRODUCT_VERSION "SVN 2754 Snapshot"
+!define PRODUCT_VERSION_NUMBER "svn2754"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Handbrake.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
@@ -44,7 +45,7 @@ SetCompressor lzma ; MUI end ------
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
-OutFile "Handbrake-Setup.exe"
+OutFile "HandBrake-${PRODUCT_VERSION_NUMBER}-Win_GUI_CLI.exe"
!include WordFunc.nsh
!insertmacro VersionCompare
@@ -96,6 +97,9 @@ Section "Handbrake" SEC01 File "Interop.QTOLibrary.dll"
File "Interop.QTOControlLib.dll"
File "AxInterop.QTOControlLib.dll"
+ File "Growl.Connector.dll"
+ File "Growl.CoreLibrary.dll"
+ File "libgcc_s_sjlj-1.dll"
File "HandBrakeCLI.exe"
File "Handbrake.exe.config"
File "handbrakepineapple.ico"
@@ -144,6 +148,9 @@ Section Uninstall Delete "$INSTDIR\handbrakepineapple.ico"
Delete "$INSTDIR\Handbrake.exe"
Delete "$INSTDIR\Handbrake.exe.config"
+ Delete "$INSTDIR\Growl.Connector.dll"
+ Delete "$INSTDIR\Growl.CoreLibrary.dll"
+ Delete "$INSTDIR\libgcc_s_sjlj-1.dll"
Delete "$INSTDIR\doc\AUTHORS"
Delete "$INSTDIR\doc\COPYING"
Delete "$INSTDIR\doc\CREDITS"
|