OSDN Git Service

Happy new year 2020!
[x264-launcher/x264-launcher.git] / etc / setup / setup.nsi
1 ; ///////////////////////////////////////////////////////////////////////////////
2 ; // Simple x264 Launcher
3 ; // Copyright (C) 2004-2020 LoRd_MuldeR <MuldeR2@GMX.de>
4 ; //
5 ; // This program is free software; you can redistribute it and/or modify
6 ; // it under the terms of the GNU General Public License as published by
7 ; // the Free Software Foundation; either version 2 of the License, or
8 ; // (at your option) any later version.
9 ; //
10 ; // This program is distributed in the hope that it will be useful,
11 ; // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ; // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ; // GNU General Public License for more details.
14 ; //
15 ; // You should have received a copy of the GNU General Public License along
16 ; // with this program; if not, write to the Free Software Foundation, Inc.,
17 ; // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 ; //
19 ; // http://www.gnu.org/licenses/gpl-2.0.txt
20 ; ///////////////////////////////////////////////////////////////////////////////
21
22
23 ;--------------------------------
24 ;Basic Defines
25 ;--------------------------------
26
27 !ifndef NSIS_UNICODE
28   !error "NSIS_UNICODE is undefined, please compile with Unicode NSIS !!!"
29 !endif
30
31 !ifndef X264_BUILD
32   !error "X264_BUILD is not defined !!!"
33 !endif
34 !ifndef X264_DATE
35   !error "X264_DATE is not defined !!!"
36 !endif
37 !ifndef X264_OUTPUT_FILE
38   !error "X264_OUTPUT_FILE is not defined !!!"
39 !endif
40 !ifndef X264_SOURCE_PATH
41   !error "X264_SOURCE_PATH is not defined !!!"
42 !endif
43
44 ;UUID
45 !define MyRegPath "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{986E454F-DACA-4326-A9C7-3E46C0BFFDCE}"
46
47 ;Web-Site
48 !define MyWebSite "http://muldersoft.com/"
49
50 ;App Paths
51 !define AppPaths "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths"
52
53
54 ;--------------------------------
55 ;Manifest
56 ;--------------------------------
57
58 !tempfile PACKHDRTEMP
59 !packhdr "${PACKHDRTEMP}" '"..\..\..\Prerequisites\MSVC\redist\bin\mt.exe" -manifest "setup.manifest" -outputresource:"${PACKHDRTEMP};1" && "..\..\..\Prerequisites\UPX\upx.exe" --brute "${PACKHDRTEMP}"'
60
61
62 ;--------------------------------
63 ;Includes
64 ;--------------------------------
65
66 !include `MUI2.nsh`
67 !include `WinVer.nsh`
68 !include `x64.nsh`
69 !include `StdUtils.nsh`
70
71
72 ;--------------------------------
73 ;Installer Attributes
74 ;--------------------------------
75
76 RequestExecutionLevel admin
77 ShowInstDetails show
78 ShowUninstDetails show
79 Name "Simple x264/x265 Launcher [Build #${X264_BUILD}]"
80 OutFile "${X264_OUTPUT_FILE}"
81 BrandingText "Date created: ${X264_DATE} [Build #${X264_BUILD}]"
82 InstallDir "$PROGRAMFILES\MuldeR\Simple x264 Launcher v2"
83 InstallDirRegKey HKLM "${MyRegPath}" "InstallLocation"
84
85
86 ;--------------------------------
87 ;Compressor
88 ;--------------------------------
89
90 SetCompressor /SOLID LZMA
91 SetCompressorDictSize 64
92
93
94 ;--------------------------------
95 ;Reserved Files
96 ;--------------------------------
97
98 ReserveFile "${NSISDIR}\Plugins\Aero.dll"
99 ReserveFile "${NSISDIR}\Plugins\LangDLL.dll"
100 ReserveFile "${NSISDIR}\Plugins\LockedList.dll"
101 ReserveFile "${NSISDIR}\Plugins\LockedList64.dll"
102 ReserveFile "${NSISDIR}\Plugins\nsDialogs.dll"
103 ReserveFile "${NSISDIR}\Plugins\nsExec.dll"
104 ReserveFile "${NSISDIR}\Plugins\StartMenu.dll"
105 ReserveFile "${NSISDIR}\Plugins\StdUtils.dll"
106 ReserveFile "${NSISDIR}\Plugins\System.dll"
107 ReserveFile "${NSISDIR}\Plugins\UserInfo.dll"
108
109
110 ;--------------------------------
111 ;Variables
112 ;--------------------------------
113
114 Var StartMenuFolder
115 Var UpdateNotificationShown
116
117
118 ;--------------------------------
119 ;Version Info
120 ;--------------------------------
121
122 !searchreplace PRODUCT_VERSION_DATE "${X264_DATE}" "-" "."
123 VIProductVersion "${PRODUCT_VERSION_DATE}.${X264_BUILD}"
124
125 VIAddVersionKey "Author" "LoRd_MuldeR <mulder2@gmx.de>"
126 VIAddVersionKey "Comments" "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version."
127 VIAddVersionKey "CompanyName" "Free Software Foundation"
128 VIAddVersionKey "FileDescription" "Simple x264 Launcher [Build #${X264_BUILD}]"
129 VIAddVersionKey "FileVersion" "${PRODUCT_VERSION_DATE}.${X264_BUILD}"
130 VIAddVersionKey "LegalCopyright" "Copyright 2004-2020 LoRd_MuldeR"
131 VIAddVersionKey "LegalTrademarks" "GNU"
132 VIAddVersionKey "OriginalFilename" "x264_x64.${X264_DATE}.exe"
133 VIAddVersionKey "ProductName" "Simple x264 Launcher"
134 VIAddVersionKey "ProductVersion" "Build #${X264_BUILD} (${X264_DATE})"
135 VIAddVersionKey "Website" "${MyWebSite}"
136
137
138 ;--------------------------------
139 ;MUI2 Interface Settings
140 ;--------------------------------
141
142 !define MUI_ABORTWARNING
143 !define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
144 !define MUI_STARTMENUPAGE_REGISTRY_KEY "${MyRegPath}"
145 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "StartmenuFolder"
146 !define MUI_LANGDLL_REGISTRY_ROOT HKLM
147 !define MUI_LANGDLL_REGISTRY_KEY "${MyRegPath}"
148 !define MUI_LANGDLL_REGISTRY_VALUENAME "SetupLanguage"
149 !define MUI_STARTMENUPAGE_DEFAULTFOLDER "Simple x264 Launcher v2"
150 !define MUI_FINISHPAGE_NOAUTOCLOSE
151 !define MUI_UNFINISHPAGE_NOAUTOCLOSE
152 !define MUI_FINISHPAGE_RUN
153 !define MUI_FINISHPAGE_RUN_FUNCTION RunAppFunction
154 !define MUI_FINISHPAGE_SHOWREADME
155 !define MUI_FINISHPAGE_SHOWREADME_FUNCTION ShowReadmeFunction
156 !define MUI_FINISHPAGE_LINK ${MyWebSite}
157 !define MUI_FINISHPAGE_LINK_LOCATION ${MyWebSite}
158 !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico"
159 !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"
160 !define MUI_WELCOMEFINISHPAGE_BITMAP "wizard.bmp"
161 !define MUI_UNWELCOMEFINISHPAGE_BITMAP "wizard-un.bmp"
162 !define MUI_HEADERIMAGE
163 !define MUI_HEADERIMAGE_BITMAP "header.bmp"
164 !define MUI_HEADERIMAGE_UNBITMAP "header-un.bmp"
165 !define MUI_LANGDLL_ALLLANGUAGES
166 !define MUI_CUSTOMFUNCTION_GUIINIT MyGuiInit
167 !define MUI_CUSTOMFUNCTION_UNGUIINIT un.MyGuiInit
168 !define MUI_LANGDLL_ALWAYSSHOW
169
170
171 ;--------------------------------
172 ;MUI2 Pages (Installer)
173 ;--------------------------------
174
175 ;Welcome
176 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
177 !define MUI_WELCOMEPAGE_TITLE_3LINES
178 !define MUI_FINISHPAGE_TITLE_3LINES
179 !insertmacro MUI_PAGE_WELCOME
180
181 ;License
182 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
183 !insertmacro MUI_PAGE_LICENSE "license.rtf"
184
185 ;Directory
186 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
187 !define MUI_PAGE_CUSTOMFUNCTION_SHOW CheckForUpdate
188 !insertmacro MUI_PAGE_DIRECTORY
189
190 ;Startmenu
191 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
192 !insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
193
194 ;LockedList
195 Page Custom LockedListShow
196
197 ;Install Files
198 !insertmacro MUI_PAGE_INSTFILES
199
200 ;Finish
201 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
202 !insertmacro MUI_PAGE_FINISH
203
204
205 ;--------------------------------
206 ;MUI2 Pages (Uninstaller)
207 ;--------------------------------
208
209 ;Welcome
210 !define MUI_WELCOMEPAGE_TITLE_3LINES
211 !define MUI_FINISHPAGE_TITLE_3LINES
212 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
213 !insertmacro MUI_UNPAGE_WELCOME
214
215 ;Confirm
216 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
217 !insertmacro MUI_UNPAGE_CONFIRM
218
219 ;LockedList
220 UninstPage Custom un.LockedListShow
221
222 ;Uninstall
223 !insertmacro MUI_UNPAGE_INSTFILES
224
225 ;Finish
226 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
227 !insertmacro MUI_UNPAGE_FINISH
228
229
230 ;--------------------------------
231 ;Languages
232 ;--------------------------------
233  
234 !insertmacro MUI_LANGUAGE "English" ;first language is the default language
235
236 ; !insertmacro MUI_LANGUAGE "German"
237 ; !insertmacro MUI_LANGUAGE "Spanish"
238 ; !insertmacro MUI_LANGUAGE "Russian"
239 ; !insertmacro MUI_LANGUAGE "Ukrainian"
240 ; !insertmacro MUI_LANGUAGE "Polish"
241
242 ; !insertmacro MUI_LANGUAGE "French"
243 ; !insertmacro MUI_LANGUAGE "SpanishInternational"
244 ; !insertmacro MUI_LANGUAGE "SimpChinese"
245 ; !insertmacro MUI_LANGUAGE "TradChinese"
246 ; !insertmacro MUI_LANGUAGE "Japanese"
247 ; !insertmacro MUI_LANGUAGE "Italian"
248 ; !insertmacro MUI_LANGUAGE "Dutch"
249 ; !insertmacro MUI_LANGUAGE "Greek"
250 ; !insertmacro MUI_LANGUAGE "Hungarian"
251 ; !insertmacro MUI_LANGUAGE "Romanian"
252 ; !insertmacro MUI_LANGUAGE "Serbian"
253 ; !insertmacro MUI_LANGUAGE "SerbianLatin"
254 ; !insertmacro MUI_LANGUAGE "Arabic"
255 ; !insertmacro MUI_LANGUAGE "Portuguese"
256 ; !insertmacro MUI_LANGUAGE "Afrikaans"
257 ; !insertmacro MUI_LANGUAGE "Malay"
258 ; !insertmacro MUI_LANGUAGE "Indonesian"
259
260
261 ;--------------------------------
262 ;Translation
263 ;--------------------------------
264
265 ;English
266 !include "language\en.nsh"
267
268
269 ;--------------------------------
270 ;LogicLib Extensions
271 ;--------------------------------
272
273 !macro _UnattendedMode _a _b _t _f
274         !insertmacro _LOGICLIB_TEMP
275         ${StdUtils.TestParameter} $_LOGICLIB_TEMP "Update"
276         StrCmp "$_LOGICLIB_TEMP" "true" `${_t}` `${_f}`
277 !macroend
278 !define UnattendedMode `"" UnattendedMode ""`
279
280 !macro _ForcedMode _a _b _t _f
281         !insertmacro _LOGICLIB_TEMP
282         ${StdUtils.TestParameter} $_LOGICLIB_TEMP "Force"
283         StrCmp "$_LOGICLIB_TEMP" "true" `${_t}` `${_f}`
284 !macroend
285 !define ForcedMode `"" ForcedMode ""`
286
287 !macro _ValidFileName _a _b _t _f
288         !insertmacro _LOGICLIB_TEMP
289         ${StdUtils.ValidFileName} $_LOGICLIB_TEMP `${_b}`
290         StrCmp "$_LOGICLIB_TEMP" "ok" `${_t}` `${_f}`
291 !macroend
292 !define ValidFileName `"" ValidFileName`
293
294
295 ;--------------------------------
296 ;Installer initialization
297 ;--------------------------------
298
299 Function .onInit
300         InitPluginsDir
301
302         ; --------
303
304         System::Call 'kernel32::CreateMutexA(i 0, i 0, t "{2B3D1EBF-B3B6-4E93-92B9-6853029A7162}") i .r1 ?e'
305         Pop $0
306         ${If} $0 <> 0
307                 MessageBox MB_ICONSTOP|MB_TOPMOST "Sorry, the installer is already running!"
308                 Quit
309         ${EndIf}
310
311         ; --------
312         
313         # Running on Windows NT family?
314         ${IfNot} ${IsNT}
315                 MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, this application does *not* support Windows 9x or Windows ME!"
316                 ExecShell "open" "http://windows.microsoft.com/"
317                 Quit
318         ${EndIf}
319
320         # Running on Windows Vista or later?
321         ${If} ${AtMostWinXP}
322                 MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, but your operating system is *not* supported anymore.$\nInstallation will be aborted!$\n$\nThe minimum supported platform is Windows Vista (Service Pack 2)."
323                 ExecShell "open" "http://windows.microsoft.com/"
324                 Quit
325         ${EndIf}
326
327         # If on Windows Vista, is the required Service Pack installed?
328         ${If} ${IsWinVista}
329         ${AndIf} ${AtMostServicePack} 1
330                 MessageBox MB_TOPMOST|MB_ICONEXCLAMATION "This application requires Windows Vista with Service Pack 2 installed."
331                 ${If} ${Cmd} `MessageBox MB_TOPMOST|MB_ICONQUESTION|MB_YESNO "Do you want to download Service Pack 2 for Windows Vista now?" IDYES`
332                         ExecShell "open" "https://www.microsoft.com/en-us/download/details.aspx?id=16468"
333                 ${EndIf}
334                 Quit
335         ${EndIf}
336
337         ; --------
338
339         ${IfNot} ${UnattendedMode}
340                 !insertmacro MUI_LANGDLL_DISPLAY
341         ${EndIf}
342
343         ; --------
344
345         UserInfo::GetAccountType
346         Pop $0
347         ${If} $0 != "Admin"
348                 MessageBox MB_ICONSTOP|MB_TOPMOST "Your system requires administrative permissions in order to install this software."
349                 SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED
350                 Quit
351         ${EndIf}
352 FunctionEnd
353
354 Function un.onInit
355         System::Call 'kernel32::CreateMutexA(i 0, i 0, t "{2B3D1EBF-B3B6-4E93-92B9-6853029A7162}") i .r1 ?e'
356         Pop $0
357         ${If} $0 <> 0
358                 MessageBox MB_ICONSTOP|MB_TOPMOST "Sorry, the un-installer is already running!"
359                 Quit
360         ${EndIf}
361
362         ${IfNot} ${ForcedMode}
363                 !insertmacro MUI_LANGDLL_DISPLAY
364         ${EndIf}
365         
366         ; --------
367
368         UserInfo::GetAccountType
369         Pop $0
370         ${If} $0 != "Admin"
371                 MessageBox MB_ICONSTOP|MB_TOPMOST "Your system requires administrative permissions in order to install this software."
372                 SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED
373                 Quit
374         ${EndIf}
375 FunctionEnd
376
377
378 ;--------------------------------
379 ;GUI initialization
380 ;--------------------------------
381
382 Function MyGuiInit
383         StrCpy $0 $HWNDPARENT
384         System::Call "user32::SetWindowPos(i r0, i -1, i 0, i 0, i 0, i 0, i 3)"
385         Aero::Apply
386 FunctionEnd
387
388 Function un.MyGuiInit
389         StrCpy $0 $HWNDPARENT
390         System::Call "user32::SetWindowPos(i r0, i -1, i 0, i 0, i 0, i 0, i 3)"
391         Aero::Apply
392 FunctionEnd
393
394
395 ;--------------------------------
396 ;Macros & Auxiliary Functions
397 ;--------------------------------
398
399 !macro PrintProgress Text
400         SetDetailsPrint textonly
401         DetailPrint '${Text}'
402         SetDetailsPrint listonly
403         Sleep 1000
404 !macroend
405
406 !macro CreateWebLink ShortcutFile TargetURL
407         Push $0
408         Push $1
409         StrCpy $0 "${ShortcutFile}"
410         StrCpy $1 "${TargetURL}"
411         Call _CreateWebLink
412         Pop $1
413         Pop $0
414 !macroend
415
416 Function _CreateWebLink
417         FlushINI "$0"
418         SetFileAttributes "$0" FILE_ATTRIBUTE_NORMAL
419         DeleteINISec "$0" "DEFAULT"
420         DeleteINISec "$0" "InternetShortcut"
421         WriteINIStr "$0" "DEFAULT" "BASEURL" "$1"
422         WriteINIStr "$0" "InternetShortcut" "ORIGURL" "$1"
423         WriteINIStr "$0" "InternetShortcut" "URL" "$1"
424         WriteINIStr "$0" "InternetShortcut" "IconFile" "$SYSDIR\SHELL32.dll"
425         WriteINIStr "$0" "InternetShortcut" "IconIndex" "150"
426         FlushINI "$0"
427         SetFileAttributes "$0" FILE_ATTRIBUTE_READONLY
428 FunctionEnd
429
430 !macro GetExecutableName OutVar
431         ${StdUtils.GetParameter} ${OutVar} "Update" ""
432         ${StdUtils.TrimStr} ${OutVar}
433         ${If} "${OutVar}" == ""
434         ${OrIfNot} ${ValidFileName} "${OutVar}"
435                 StrCpy ${OutVar} "x264_launcher.exe"
436         ${EndIf}
437 !macroend
438
439 !macro DisableNextButton TmpVar
440         GetDlgItem ${TmpVar} $HWNDPARENT 1
441         EnableWindow ${TmpVar} 0
442 !macroend
443
444 !macro DisableBackButton TmpVar
445         GetDlgItem ${TmpVar} $HWNDPARENT 3
446         EnableWindow ${TmpVar} 0
447 !macroend
448
449 !macro CleanUpFiles options
450         Delete ${options} `$INSTDIR\*.exe`
451         Delete ${options} `$INSTDIR\*.dll`
452         Delete ${options} `$INSTDIR\*.txt`
453         Delete ${options} `$INSTDIR\*.htm`
454         Delete ${options} `$INSTDIR\*.html`
455         
456         RMDir /r ${options} `$INSTDIR\toolset`
457         RMDir /r ${options} `$INSTDIR\imageformats`
458         RMDir /r ${options} `$INSTDIR\sources`
459 !macroend
460
461 !macro SetControlEnabled item_id enable
462         FindWindow $R0 "#32770" "" $HWNDPARENT
463         ${IfNot} $R0 == 0
464                 GetDlgItem $R1 $R0 ${item_id}
465                 EnableWindow $R1 ${enable}
466         ${EndIf}
467 !macroend
468
469 !macro SkipToNextPage
470         GetDlgItem $R0 $HWNDPARENT 1
471         System::Call "User32::PostMessage(i $HWNDPARENT, i ${WM_COMMAND}, i 1, i $R0)"
472 !macroend
473
474
475 ;--------------------------------
476 ;Install Files
477 ;--------------------------------
478
479 Section "-PreInit"
480         SetShellVarContext all
481         SetOutPath "$INSTDIR"
482 SectionEnd
483
484 Section "-Clean Up Old Cruft"
485         !insertmacro PrintProgress "$(X264_LANG_STATUS_CLEANUP)"
486         !insertmacro CleanUpFiles ""
487 SectionEnd
488
489 Section "!Install Files"
490         !insertmacro PrintProgress "$(X264_LANG_STATUS_INSTFILES)"
491         
492         DeleteOldBinary:
493         !insertmacro GetExecutableName $R0
494         ClearErrors
495         Delete "$INSTDIR\$R0"
496         
497         ${If} ${Errors}
498                 MessageBox MB_TOPMOST|MB_ICONSTOP|MB_RETRYCANCEL 'Could not delete old "$R0" file. Is program still running?' IDRETRY DeleteOldBinary
499                 Abort "Could not delete old binary!"
500         ${EndIf}
501
502         File /a `/oname=$R0` `${X264_SOURCE_PATH}\x264_launcher.exe`
503
504         File /a `${X264_SOURCE_PATH}\*.dll`
505         File /a `${X264_SOURCE_PATH}\*.txt`
506         File /a `${X264_SOURCE_PATH}\*.html`
507
508         SetOutPath "$INSTDIR\imageformats"
509         File /a /r `${X264_SOURCE_PATH}\imageformats\*.*`
510
511         SetOutPath "$INSTDIR\toolset"
512         File /a /r `${X264_SOURCE_PATH}\toolset\*.*`
513
514         SetOutPath "$INSTDIR\sources"
515         File /a /r `${X264_SOURCE_PATH}\sources\*.*`
516 SectionEnd
517
518 Section "-Write Uinstaller"
519         !insertmacro PrintProgress "$(X264_LANG_STATUS_MAKEUNINST)"
520         WriteUninstaller "$INSTDIR\Uninstall.exe"
521 SectionEnd
522
523 Section "-Create Shortcuts"
524         !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
525                 !insertmacro PrintProgress "$(X264_LANG_STATUS_SHORTCUTS)"
526                 CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
527                 
528                 SetShellVarContext current
529                 
530                 Delete "$SMPROGRAMS\$StartMenuFolder\*.lnk"
531                 Delete "$SMPROGRAMS\$StartMenuFolder\*.pif"
532                 Delete "$SMPROGRAMS\$StartMenuFolder\*.url"
533                 
534                 SetShellVarContext all
535                 
536                 Delete "$SMPROGRAMS\$StartMenuFolder\*.lnk"
537                 Delete "$SMPROGRAMS\$StartMenuFolder\*.pif"
538                 Delete "$SMPROGRAMS\$StartMenuFolder\*.url"
539
540                 !insertmacro GetExecutableName $R0
541                 
542                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"        "$INSTDIR\$R0" "" "$INSTDIR\$R0" 0
543                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_LICENSE).lnk"   "$INSTDIR\LICENSE.html"
544                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_MANUAL).lnk"    "$INSTDIR\README.html"
545                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_CHANGELOG).lnk" "$INSTDIR\HISTORY.txt"
546                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_UNINSTALL).lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0
547                 
548                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\MuldeR's Homepage.url" "${MyWebSite}"
549                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\Doom9's Forum.url"     "http://forum.doom9.org/"
550                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\x264.com.url"          "http://x264.com/"
551                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\x265.com.url"          "http://x265.org/"
552                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\Avisynth Wiki.url"     "http://avisynth.nl/"
553                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\VapourSynth.com.url"   "http://www.vapoursynth.com/"
554
555                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
556                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ShellVerb.PinToTaskbar}
557                         DetailPrint 'Pin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
558                 ${EndIf}
559         !insertmacro MUI_STARTMENU_WRITE_END
560 SectionEnd
561
562 Section "-Update Registry"
563         !insertmacro PrintProgress "$(X264_LANG_STATUS_REGISTRY)"
564
565         !insertmacro GetExecutableName $R0
566         WriteRegStr HKLM "${MyRegPath}" "InstallLocation" "$INSTDIR"
567         WriteRegStr HKLM "${MyRegPath}" "ExecutableName" "$R0"
568         WriteRegStr HKLM "${MyRegPath}" "DisplayIcon" "$INSTDIR\$R0,0"
569         WriteRegStr HKLM "${MyRegPath}" "UninstallString" '"$INSTDIR\Uninstall.exe"'
570         WriteRegStr HKLM "${MyRegPath}" "DisplayName" "Simple x264 Launcher v2"
571         WriteRegStr HKLM "${MyRegPath}" "Publisher" "LoRd_MuldeR <mulder2@gmx.de>"
572         WriteRegStr HKLM "${MyRegPath}" "DisplayVersion" "Build #${X264_BUILD} (${X264_DATE})"
573         WriteRegStr HKLM "${MyRegPath}" "URLInfoAbout" "${MyWebSite}"
574         WriteRegStr HKLM "${MyRegPath}" "URLUpdateInfo" "${MyWebSite}"
575         
576         DeleteRegKey HKCU "${AppPaths}\x264_launcher.exe"
577         WriteRegStr HKLM "${AppPaths}\x264_launcher.exe" "" "$INSTDIR\$R0"
578         WriteRegStr HKLM "${AppPaths}\x264_launcher.exe" "Path" "$INSTDIR"
579 SectionEnd
580
581 Section "-Finished"
582         !insertmacro PrintProgress "$(MUI_TEXT_FINISH_TITLE)."
583         ${IfThen} ${UnattendedMode} ${|} SetAutoClose true ${|}
584 SectionEnd
585
586
587 ;--------------------------------
588 ;Uninstaller
589 ;--------------------------------
590
591 Section "Uninstall"
592         SetOutPath "$EXEDIR"
593         !insertmacro PrintProgress "$(X264_LANG_STATUS_UNINSTALL)"
594
595         ; --------------
596         ; Startmenu
597         ; --------------
598         
599         !insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
600         ${IfNot} "$StartMenuFolder" == ""
601                 SetShellVarContext current
602                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
603                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ShellVerb.UnpinFromTaskbar}
604                         DetailPrint 'Unpin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
605                 ${EndIf}
606                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\*.*"
607                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.lnk"
608                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.url"
609                         RMDir "$SMPROGRAMS\$StartMenuFolder"
610                 ${EndIf}
611                 
612                 SetShellVarContext all
613                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
614                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ShellVerb.UnpinFromTaskbar}
615                         DetailPrint 'Unpin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
616                 ${EndIf}
617                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\*.*"
618                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.lnk"
619                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.url"
620                         RMDir "$SMPROGRAMS\$StartMenuFolder"
621                 ${EndIf}
622         ${EndIf}
623
624         ; --------------
625         ; Files
626         ; --------------
627
628         ReadRegStr $R0 HKLM "${MyRegPath}" "ExecutableName"
629         ${IfThen} "$R0" == "" ${|} StrCpy $R0 "x264_launcher.exe" ${|}
630
631         Delete /REBOOTOK "$INSTDIR\$R0"
632         !insertmacro CleanUpFiles /REBOOTOK
633         RMDir "$INSTDIR"
634
635         ; --------------
636         ; Registry
637         ; --------------
638         
639         DeleteRegKey HKLM "${MyRegPath}"
640         DeleteRegKey HKCU "${MyRegPath}"
641
642         DeleteRegKey HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{54dcbccb-c905-46dc-b6e6-48563d0e9e55}"
643         DeleteRegKey HKCU "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{54dcbccb-c905-46dc-b6e6-48563d0e9e55}"
644         
645         DeleteRegKey HKLM "${AppPaths}\x264_launcher.exe"
646         DeleteRegKey HKCU "${AppPaths}\x264_launcher.exe"
647
648         MessageBox MB_YESNO|MB_TOPMOST "$(X264_LANG_UNINST_PERSONAL)" IDNO +3
649         Delete "$LOCALAPPDATA\LoRd_MuldeR\Simple x264 Launcher\*.ini"
650         RMDir "$LOCALAPPDATA\LoRd_MuldeR\Simple x264 Launcher"
651
652         !insertmacro PrintProgress "$(MUI_UNTEXT_FINISH_TITLE)."
653 SectionEnd
654
655
656 ;--------------------------------
657 ;Check For Update Mode
658 ;--------------------------------
659
660 Function SkipIfUnattended
661         ${IfThen} ${UnattendedMode} ${|} Abort ${|}
662 FunctionEnd
663
664 Function CheckForUpdate
665         ${If} "$INSTDIR" == ""
666         ${OrIf} "$INSTDIR" == "$EXEDIR"
667         ${OrIfNot} ${FileExists} "$INSTDIR\x264_launcher.exe"
668                 StrCpy $UpdateNotificationShown FALSE
669                 !insertmacro SetControlEnabled 1019 1
670                 !insertmacro SetControlEnabled 1001 1
671                 Return
672         ${Else}
673                 !insertmacro SetControlEnabled 1019 0
674                 !insertmacro SetControlEnabled 1001 0
675                 ${If} "$UpdateNotificationShown" != TRUE
676                         StrCpy $UpdateNotificationShown TRUE
677                         MessageBox MB_ICONINFORMATION|MB_TOPMOST "$(X264_LANG_UNINST_UPDATE_MODE)"
678                         !insertmacro SkipToNextPage
679                 ${EndIf}
680         ${EndIf}
681 FunctionEnd
682
683 Function un.CheckForcedUninstall
684         ${IfThen} ${ForcedMode} ${|} Abort ${|}
685 FunctionEnd
686
687
688 ;--------------------------------
689 ;Locked List
690 ;--------------------------------
691
692 !macro _LockedListShow uinst
693         !insertmacro MUI_HEADER_TEXT "$(X264_LANG_LOCKEDLIST_HEADER)" "$(X264_LANG_LOCKEDLIST_TEXT)"
694         ${If} ${UnattendedMode}
695                 !insertmacro DisableBackButton $R0
696         ${EndIf}
697         ${If} ${RunningX64}
698                 InitPluginsDir
699                 File /oname=$PLUGINSDIR\LockedList64.dll `${NSISDIR}\Plugins\LockedList64.dll`
700         ${EndIf}
701         !insertmacro GetExecutableName $R0
702         LockedList::AddModule "\$R0"
703         ${If} "$R0" != "x264_launcher.exe"
704                 LockedList::AddModule "\x264_launcher.exe"
705         ${EndIf}
706         LockedList::AddModule "\Uninstall.exe"
707         !if ${uinst} < 1
708                 LockedList::AddModule "\Au_.exe"
709         !endif
710         #LockedList::AddFolder "$INSTDIR"
711         LockedList::Dialog /autonext /heading "$(X264_LANG_LOCKEDLIST_HEADING)" /noprograms "$(X264_LANG_LOCKEDLIST_NOPROG)" /searching  "$(X264_LANG_LOCKEDLIST_SEARCH)" /colheadings "$(X264_LANG_LOCKEDLIST_COLHDR1)" "$(X264_LANG_LOCKEDLIST_COLHDR2)"
712         Pop $R0
713 !macroend
714
715 Function LockedListShow
716         !insertmacro _LockedListShow 0
717 FunctionEnd
718
719 Function un.LockedListShow
720         !insertmacro _LockedListShow 1
721 FunctionEnd
722
723
724 ;--------------------------------
725 ;Install Success
726 ;--------------------------------
727
728 Function RunAppFunction
729         !insertmacro DisableNextButton $R0
730         !insertmacro GetExecutableName $R0
731         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR" "explore" ""
732         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR\$R0" "open" "--first-run"
733 FunctionEnd
734
735 Function ShowReadmeFunction
736         !insertmacro DisableNextButton $R0
737         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR\README.html" "open" ""
738 FunctionEnd
739
740 Function .onInstSuccess
741         ${If} ${UnattendedMode}
742                 !insertmacro GetExecutableName $R0
743                 ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR" "explore" ""
744                 ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR\$R0" "open" "--first-run"
745         ${EndIf}
746 FunctionEnd