blob: ec6914ec9d752c8d907c65f828c368dd270a167b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
/* Resources.Designer.cs $
This file is part of the HandBrake source code.
Homepage: <http://HandBrake.fr/>.
It may be used under the terms of the GNU General Public License. */
!define PRODUCT_NAME "HandBrake"
!define PRODUCT_VERSION "1.4.0"
!define PRODUCT_VERSION_NUMBER "1.4.0"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
SetCompressor lzma
ManifestDPIAware true
; MUI 1.67 compatible ------
!include "MUI.nsh"
!include WinVer.nsh
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "HandBrakepineapple.ico"
!define MUI_UNICON "HandBrakepineapple.ico"
; GPL is not an EULA, no need to agree to it.
!define MUI_LICENSEPAGE_BUTTON $(^NextBtn)
!define MUI_LICENSEPAGE_TEXT_BOTTOM "You are now aware of your rights. Click Next to continue."
!define MUI_WELCOMEFINISHPAGE_BITMAP "InstallerBackground.bmp"
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_TEXT "Create desktop shortcut (all users)"
!define MUI_FINISHPAGE_RUN_FUNCTION "desktopShortcut"
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!insertmacro MUI_PAGE_LICENSE "doc\COPYING"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
;!define MUI_FINISHPAGE_RUN "$INSTDIR\HandBrake.exe"
!insertmacro MUI_PAGE_FINISH
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
; Language files
!insertmacro MUI_LANGUAGE "English"
; MUI end ------
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "HandBrake-${PRODUCT_VERSION_NUMBER}-x86_64-Win_GUI.exe"
!include WordFunc.nsh
!insertmacro VersionCompare
!include LogicLib.nsh
!include x64.nsh
InstallDir "$PROGRAMFILES64\HandBrake"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
Function .onInit
; For Silent Installs, Assume All Users
IfSilent 0 +2
SetShellVarContext all
; Begin Only allow one version
System::Call 'kernel32::CreateMutexA(i 0, i 0, t "myMutex") i .r1 ?e'
Pop $R0
StrCmp $R0 0 +3
MessageBox MB_OK|MB_ICONEXCLAMATION "The installer is already running." /SD IDOK
Abort
; Detect if the intsaller is running on Windows XP/Vista and abort if it is.
${IfNot} ${AtLeastWin7}
MessageBox MB_OK "Windows 7 with Service Pack 1 or later is required in order to run HandBrake."
Quit
${EndIf}
${IfNot} ${RunningX64}
MessageBox MB_OK "HandBrake requires a 64bit version of Windows 7 SP1 or later to install. Your system has a 32bit version of Windows."
Quit
${EndIf}
;Remove previous version
ReadRegStr $R0 HKLM \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}\" \
"UninstallString"
StrCmp $R0 "" done
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"${PRODUCT_NAME} is already installed. $\n$\nClick `OK` to remove the \
previous version or `Cancel` to continue." /SD IDOK \
IDOK uninst
goto done
;Run the uninstaller
uninst:
CopyFiles /SILENT /FILESONLY "$INSTDIR\uninst.exe" "$TEMP\uninstallhb.exe"
IfSilent +3
ExecWait '"$TEMP\uninstallhb.exe" _?=$INSTDIR'
goto done
ExecWait '"$TEMP\uninstallhb.exe" _?=$INSTDIR /S'
done:
FunctionEnd
Section "HandBrake" SectionApp
SetOutPath "$INSTDIR"
SetOverwrite ifnewer
SectionIn RO ; Read only, always installed
; Install Files
File "*.exe"
File "*.dll"
File "*.template"
File "*.config"
File "*.pdb"
File "*.config"
; Copy the languages
SetOutPath "$INSTDIR\de"
SetOverwrite ifnewer
File "de\*.*"
SetOutPath "$INSTDIR\zh"
SetOverwrite ifnewer
File "zh\*.*"
SetOutPath "$INSTDIR\es"
SetOverwrite ifnewer
File "es\*.*"
SetOutPath "$INSTDIR\fr"
SetOverwrite ifnewer
File "fr\*.*"
SetOutPath "$INSTDIR\ko"
SetOverwrite ifnewer
File "ko\*.*"
SetOutPath "$INSTDIR\ru"
SetOverwrite ifnewer
File "ru\*.*"
SetOutPath "$INSTDIR\tr"
SetOverwrite ifnewer
File "tr\*.*"
SetOutPath "$INSTDIR\ja"
SetOverwrite ifnewer
File "ja\*.*"
SetOutPath "$INSTDIR\pt-BR"
SetOverwrite ifnewer
File "pt-BR\*.*"
SetOutPath "$INSTDIR\co"
SetOverwrite ifnewer
File "co\*.*"
SetOutPath "$INSTDIR\uk"
SetOverwrite ifnewer
File "uk\*.*"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
SetOverwrite ifnewer
File "doc\*.*"
; Start Menu Shortcut for All users.
SetShellVarContext all
CreateDirectory "$SMPROGRAMS\HandBrake"
CreateShortCut "$SMPROGRAMS\HandBrake\HandBrake.lnk" "$INSTDIR\HandBrake.exe"
SectionEnd
Section -AdditionalIcons
CreateShortCut "$SMPROGRAMS\HandBrake\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
Section -Post
WriteUninstaller "$INSTDIR\uninst.exe"
WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\HandBrake.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\HandBrake.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
SectionEnd
Function un.onUninstSuccess
HideWindow
MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." /SD IDOK
FunctionEnd
Function un.onInit
; For Silent Installs, Assume All Users
IfSilent 0 +2
SetShellVarContext all
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" /SD IDYES IDYES +2
Abort
FunctionEnd
Section Uninstall
Delete "$INSTDIR\uninst.exe"
Delete "$INSTDIR\*.*"
Delete "$INSTDIR\doc\*.*"
RMDir "$INSTDIR\doc"
Delete "$INSTDIR\de\*.*"
RMDir "$INSTDIR\de"
Delete "$INSTDIR\zh\*.*"
RMDir "$INSTDIR\zh"
Delete "$INSTDIR\es\*.*"
RMDir "$INSTDIR\es"
Delete "$INSTDIR\fr\*.*"
RMDir "$INSTDIR\fr"
Delete "$INSTDIR\ko\*.*"
RMDir "$INSTDIR\ko"
Delete "$INSTDIR\ru\*.*"
RMDir "$INSTDIR\ru"
Delete "$INSTDIR\tr\*.*"
RMDir "$INSTDIR\tr"
Delete "$INSTDIR\ja\*.*"
RMDir "$INSTDIR\ja"
Delete "$INSTDIR\pt-BR\*.*"
RMDir "$INSTDIR\pt-BR"
Delete "$INSTDIR\co\*.*"
RMDir "$INSTDIR\co"
Delete "$INSTDIR\uk\*.*"
RMDir "$INSTDIR\uk"
RMDir "$INSTDIR"
Delete "$SMPROGRAMS\HandBrake\Uninstall.lnk"
Delete "$DESKTOP\HandBrake.lnk"
Delete "$SMPROGRAMS\HandBrake\HandBrake.lnk"
RMDir "$SMPROGRAMS\HandBrake"
RMDir "$INSTDIR"
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
SetShellVarContext all
Delete "$SMPROGRAMS\HandBrake Nightly\Uninstall.lnk"
Delete "$SMPROGRAMS\HandBrake Nightly\HandBrake Nightly.lnk"
RMDir "$SMPROGRAMS\HandBrake Nightly"
Delete "$DESKTOP\HandBrake Nightly.lnk"
SetAutoClose true
SectionEnd
Function "desktopShortcut"
SetShellVarContext all
CreateShortCut "$DESKTOP\HandBrake.lnk" "$INSTDIR\HandBrake.exe"
FunctionEnd
|