]> git.sesse.net Git - vlc/blob - extras/package/win32/vlc.win32.nsi.in
7d0b0282140ddf982bcd8a936d0ddb4476a81114
[vlc] / extras / package / win32 / vlc.win32.nsi.in
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ; NSIS installer script for vlc ;
3 ; (http://nsis.sourceforge.net) ;
4 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5
6 !include "languages\declaration.nsh"
7
8 !define PRODUCT_NAME "VLC media player"
9 !define VERSION @VERSION@
10 !define PRODUCT_VERSION @VERSION@
11 !define PRODUCT_GROUP "VideoLAN"
12 !define PRODUCT_PUBLISHER "VideoLAN"
13 !define PRODUCT_WEB_SITE "http://www.videolan.org/"
14 !define PRODUCT_DIR_REGKEY "Software\VideoLAN\VLC"
15 !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
16 !define PRODUCT_UNINST_ROOT_KEY "HKLM"
17 !define PRODUCT_ID "{ea92ef52-afe4-4212-bacb-dfe9fca94cd6}"
18
19 !define MUI_LANGDLL_REGISTRY_ROOT "HKLM"
20 !define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_DIR_REGKEY}"
21 !define MUI_LANGDLL_REGISTRY_VALUENAME "Language"
22
23 @BUILD_ACTIVEX_TRUE@ !define INSTALL_ACTIVEX
24 @BUILD_MOZILLA_TRUE@ !define INSTALL_MOZILLA
25
26 @FILE_LIBVLCCORE_DLL@
27 @FILE_LIBVLC_DLL@
28
29 ;;;;;;;;;;;;;;;;;;;;;;;;;
30 ; General configuration ;
31 ;;;;;;;;;;;;;;;;;;;;;;;;;
32
33 Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
34 OutFile ..\vlc-${VERSION}-win32.exe
35 InstallDir "$PROGRAMFILES\VideoLAN\VLC"
36 InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
37 !ifdef NSIS_LZMA_COMPRESS_WHOLE
38 SetCompressor lzma
39 !else
40 SetCompressor /SOLID lzma
41 !endif
42
43 SetOverwrite ifnewer
44 CRCCheck on
45 BrandingText "${PRODUCT_GROUP} ${PRODUCT_NAME}"
46
47 InstType $Name_InstTypeRecommended
48 InstType $Name_InstTypeMinimum
49 InstType $Name_InstTypeFull
50
51 RequestExecutionLevel user
52 !addincludedir NSIS
53 !addplugindir NSIS
54 !include UAC.nsh
55
56 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
57 ; NSIS Modern User Interface configuration ;
58 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
59
60 ; MUI 1.67 compatible ------
61   !include "MUI.nsh"
62
63 ; MUI Settings
64   !define MUI_ABORTWARNING
65   !define MUI_ICON "vlc.ico"
66   !define MUI_UNICON "vlc.ico"
67   !define MUI_COMPONENTSPAGE_SMALLDESC
68
69 ; Installer pages
70   ; Welcome page
71     !define MUI_WELCOMEPAGE_TITLE_3LINES
72     !insertmacro MUI_PAGE_WELCOME
73   ; License page
74     !define MUI_LICENSEPAGE_BUTTON $(^NextBtn)
75     !insertmacro MUI_PAGE_LICENSE "COPYING.txt"
76   ; Components page
77     !insertmacro MUI_PAGE_COMPONENTS
78   ; Directory page
79     !insertmacro MUI_PAGE_DIRECTORY
80   ; Instfiles page
81     !insertmacro MUI_PAGE_INSTFILES
82   ; Finish page
83
84     Function ExecAppFile
85       Exec '$INSTDIR\vlc.exe'
86     FunctionEnd
87
88     Function AppRunAs
89       !insertmacro UAC.CallFunctionAsUser ExecAppFile
90     FunctionEnd
91
92     !define MUI_FINISHPAGE_RUN
93     !define MUI_FINISHPAGE_RUN_FUNCTION AppRunAs
94     !define MUI_FINISHPAGE_LINK $Link_VisitWebsite
95     !define MUI_FINISHPAGE_LINK_LOCATION "http://www.videolan.org/vlc/"
96     !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\README.txt"
97     !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
98     !define MUI_FINISHPAGE_NOREBOOTSUPPORT
99     !insertmacro MUI_PAGE_FINISH
100
101 ; Uninstaller pages
102     !insertmacro MUI_UNPAGE_CONFIRM
103     !insertmacro MUI_UNPAGE_COMPONENTS
104     !insertmacro MUI_UNPAGE_INSTFILES
105     !insertmacro MUI_UNPAGE_FINISH
106
107 ; Language files
108   !insertmacro MUI_LANGUAGE "English" # first language is the default language
109   !insertmacro MUI_LANGUAGE "French"
110   !insertmacro MUI_LANGUAGE "German"
111   !insertmacro MUI_LANGUAGE "Spanish"
112   !insertmacro MUI_LANGUAGE "SimpChinese"
113   !insertmacro MUI_LANGUAGE "TradChinese"
114   !insertmacro MUI_LANGUAGE "Japanese"
115   !insertmacro MUI_LANGUAGE "Korean"
116   !insertmacro MUI_LANGUAGE "Italian"
117   !insertmacro MUI_LANGUAGE "Dutch"
118   !insertmacro MUI_LANGUAGE "Danish"
119   !insertmacro MUI_LANGUAGE "Swedish"
120   !insertmacro MUI_LANGUAGE "Norwegian"
121   !insertmacro MUI_LANGUAGE "Finnish"
122   !insertmacro MUI_LANGUAGE "Greek"
123   !insertmacro MUI_LANGUAGE "Russian"
124   !insertmacro MUI_LANGUAGE "Portuguese"
125   !insertmacro MUI_LANGUAGE "PortugueseBR"
126   !insertmacro MUI_LANGUAGE "Arabic"
127   !insertmacro MUI_LANGUAGE "Polish"
128   !insertmacro MUI_LANGUAGE "Romanian"
129   !insertmacro MUI_LANGUAGE "Slovak"
130   !insertmacro MUI_LANGUAGE "Czech"
131   !insertmacro MUI_LANGUAGE "Hungarian"
132   !insertmacro MUI_LANGUAGE "Catalan"
133   !insertmacro MUI_LANGUAGE "Bulgarian"
134
135 ; Reserve files for solid compression
136   !insertmacro MUI_RESERVEFILE_LANGDLL
137   !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
138
139 ; MUI end ------
140
141 ;;;;;;;;;;;;;;;;;;;;;;;
142 ; Macro and Functions ;
143 ;;;;;;;;;;;;;;;;;;;;;;;
144
145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
146 ; 1. File type associations ;
147 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
148
149 ;; Function that register one extension for VLC
150 Function RegisterExtension
151   ; back up old value for extension $R0 (eg. ".opt")
152   ReadRegStr $1 HKCR "$R0" ""
153   StrCmp $1 "" NoBackup
154     StrCmp $1 "VLC$R0" "NoBackup"
155     WriteRegStr HKCR "$R0" "VLC.backup" $1
156 NoBackup:
157   WriteRegStr HKCR "$R0" "" "VLC$R0"
158   ReadRegStr $0 HKCR "VLC$R0" ""
159   WriteRegStr HKCR "VLC$R0" "" "VLC media file ($R0)"
160   WriteRegStr HKCR "VLC$R0\shell" "" "Open"
161   WriteRegStr HKCR "VLC$R0\shell\Open" "" $ShellAssociation_Play
162   WriteRegStr HKCR "VLC$R0\shell\Open\command" "" '"$INSTDIR\vlc.exe" --started-from-file "%1"'
163   WriteRegStr HKCR "VLC$R0\DefaultIcon" "" '"$INSTDIR\vlc.exe",0'
164
165 ;;; Vista Only part
166   ; Vista and above detection
167   ReadRegStr $R1 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
168   StrCpy $R2 $R1 1
169   StrCmp $R2 '6' ForVista ToEnd
170 ForVista:
171   WriteRegStr HKLM "Software\Clients\Media\VLC\Capabilities\FileAssociations" "$R0" "VLC$R0"
172
173 ToEnd:
174 FunctionEnd
175
176 ;; Function that removes one extension that VLC owns.
177 Function un.RegisterExtension
178   ;start of restore script
179   ReadRegStr $1 HKCR "$R0" ""
180   StrCmp $1 "VLC$R0" 0 NoOwn ; only do this if we own it
181     ; Read the old value from Backup
182     ReadRegStr $1 HKCR "$R0" "VLC.backup"
183     StrCmp $1 "" 0 Restore ; if backup="" then delete the whole key
184       DeleteRegKey HKCR "$R0"
185     Goto NoOwn
186 Restore:
187       WriteRegStr HKCR "$R0" "" $1
188       DeleteRegValue HKCR "$R0" "VLC.backup"
189 NoOwn:
190     DeleteRegKey HKCR "VLC$R0" ;Delete key with association settings
191     DeleteRegKey HKLM "Software\Clients\Media\VLC\Capabilities\FileAssociations\VLC$R0" ; for vista
192 FunctionEnd
193
194 !macro RegisterExtensionSection EXT
195   Section ${EXT}
196     SectionIn 1 3
197     Push $R0
198     StrCpy $R0 ${EXT}
199     Call RegisterExtension
200     Pop $R0
201   SectionEnd
202 !macroend
203
204 !macro UnRegisterExtensionSection EXT
205   Push $R0
206   StrCpy $R0 ${EXT}
207   Call un.RegisterExtension
208   Pop $R0
209 !macroend
210
211 !macro WriteRegStrSupportedTypes EXT
212   WriteRegStr HKCR Applications\vlc.exe\SupportedTypes ${EXT} ""
213 !macroend
214
215 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
216 ; Extension lists  Macros                    ;
217 ; Those macros calls the previous functions  ;
218 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
219
220 !macro MacroAudioExtensions _action
221   !insertmacro ${_action} ".a52"
222   !insertmacro ${_action} ".aac"
223   !insertmacro ${_action} ".ac3"
224   !insertmacro ${_action} ".aob"
225   !insertmacro ${_action} ".dts"
226   !insertmacro ${_action} ".flac"
227   !insertmacro ${_action} ".m4a"
228   !insertmacro ${_action} ".m4p"
229   !insertmacro ${_action} ".mka"
230   !insertmacro ${_action} ".mod"
231   !insertmacro ${_action} ".mp1"
232   !insertmacro ${_action} ".mp2"
233   !insertmacro ${_action} ".mp3"
234   !insertmacro ${_action} ".oma"
235   !insertmacro ${_action} ".oga"
236   !insertmacro ${_action} ".spx"
237   !insertmacro ${_action} ".tta"
238   !insertmacro ${_action} ".wav"
239   !insertmacro ${_action} ".wma"
240   !insertmacro ${_action} ".wv"
241   !insertmacro ${_action} ".xm"
242 !macroend
243
244 !macro MacroVideoExtensions _action
245   !insertmacro ${_action} ".asf"
246   !insertmacro ${_action} ".avi"
247   !insertmacro ${_action} ".divx"
248   !insertmacro ${_action} ".dv"
249   !insertmacro ${_action} ".flv"
250   !insertmacro ${_action} ".gxf"
251   !insertmacro ${_action} ".m1v"
252   !insertmacro ${_action} ".m2v"
253   !insertmacro ${_action} ".m2ts"
254   !insertmacro ${_action} ".m4v"
255   !insertmacro ${_action} ".mkv"
256   !insertmacro ${_action} ".mov"
257   !insertmacro ${_action} ".mp4"
258   !insertmacro ${_action} ".mpeg"
259   !insertmacro ${_action} ".mpeg1"
260   !insertmacro ${_action} ".mpeg2"
261   !insertmacro ${_action} ".mpeg4"
262   !insertmacro ${_action} ".mpg"
263   !insertmacro ${_action} ".mts"
264   !insertmacro ${_action} ".mxf"
265   !insertmacro ${_action} ".nuv"
266   !insertmacro ${_action} ".ogg"
267   !insertmacro ${_action} ".ogm"
268   !insertmacro ${_action} ".ogx"
269   !insertmacro ${_action} ".ogv"
270   !insertmacro ${_action} ".rmvb"
271   !insertmacro ${_action} ".ts"
272   !insertmacro ${_action} ".vob"
273   !insertmacro ${_action} ".vro"
274   !insertmacro ${_action} ".wmv"
275 !macroend
276
277 !macro MacroOtherExtensions _action
278   !insertmacro ${_action} ".asx"
279   !insertmacro ${_action} ".bin"
280   !insertmacro ${_action} ".cue"
281   !insertmacro ${_action} ".ifo"
282   !insertmacro ${_action} ".m3u"
283   !insertmacro ${_action} ".pls"
284   !insertmacro ${_action} ".sdp"
285   !insertmacro ${_action} ".vlc"
286   !insertmacro ${_action} ".xspf"
287 !macroend
288
289 ; One macro to rule them all
290 !macro MacroAllExtensions _action
291   !insertmacro MacroAudioExtensions ${_action}
292   !insertmacro MacroVideoExtensions ${_action}
293   !insertmacro MacroOtherExtensions ${_action}
294 !macroend
295
296 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
297 ; 2. Context menu entries ;
298 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
299
300 ; Generic function for adding the context menu for one ext.
301 !macro AddContextMenuExt EXT
302   WriteRegStr HKCR ${EXT}\shell\PlayWithVLC "" $ContextMenuEntry_PlayWith
303   WriteRegStr HKCR ${EXT}\shell\PlayWithVLC\command "" '"$INSTDIR\vlc.exe" --started-from-file --no-playlist-enqueue "%1"'
304
305   WriteRegStr HKCR ${EXT}\shell\AddToPlaylistVLC "" $ContextMenuEntry_AddToPlaylist
306   WriteRegStr HKCR ${EXT}\shell\AddToPlaylistVLC\command "" '"$INSTDIR\vlc.exe" --started-from-file --playlist-enqueue "%1"'
307 !macroend
308
309 !macro AddContextMenu EXT
310   Push $R0
311   ReadRegStr $R0 HKCR ${EXT} ""
312   !insertmacro AddContextMenuExt $R0
313   Pop $R0
314 !macroend
315
316 !macro DeleteContextMenuExt EXT
317   DeleteRegKey HKCR ${EXT}\shell\PlayWithVLC
318   DeleteRegKey HKCR ${EXT}\shell\AddToPlaylistVLC
319 !macroend
320
321 !macro DeleteContextMenu EXT
322   Push $R0
323   ReadRegStr $R0 HKCR ${EXT} ""
324   !insertmacro DeleteContextMenuExt $R0
325   Pop $R0
326 !macroend
327
328 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
329 ; 3. Delete prefs           ;
330 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
331
332 !macro delprefs
333   StrCpy $0 0
334   !define Index 'Line${__LINE__}'
335   "${Index}-Loop:"
336   ; FIXME
337   ; this will loop through all the logged users and "virtual" windows users
338   ; (it looks like users are only present in HKEY_USERS when they are logged in)
339     ClearErrors
340     EnumRegKey $1 HKU "" $0
341     StrCmp $1 "" "${Index}-End"
342     IntOp $0 $0 + 1
343     ReadRegStr $2 HKU "$1\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" AppData
344     StrCmp $2 "" "${Index}-Loop"
345     RMDir /r "$2\vlc"
346     Goto "${Index}-Loop"
347   "${Index}-End:"
348   !undef Index
349 !macroend
350
351 ;;;;;;;;;;;;;;;
352 ; 4. Logging  ;
353 ;;;;;;;;;;;;;;;
354 Var UninstallLog
355 !macro OpenUninstallLog
356   FileOpen $UninstallLog "$INSTDIR\uninstall.log" a
357   FileSeek $UninstallLog 0 END
358 !macroend
359
360 !macro CloseUninstallLog
361   FileClose $UninstallLog
362   SetFileAttributes "$INSTDIR\uninstall.log" HIDDEN
363 !macroend
364
365 ;;;;;;;;;;;;;;;;;;;;
366 ; 5. Installations ;
367 ;;;;;;;;;;;;;;;;;;;;
368 !macro InstallFile FILEREGEX
369   File "${FILEREGEX}"
370   !define Index 'Line${__LINE__}'
371   FindFirst $0 $1 "$INSTDIR\${FILEREGEX}"
372   StrCmp $0 "" "${Index}-End"
373   "${Index}-Loop:"
374     StrCmp $1 "" "${Index}-End"
375     FileWrite $UninstallLog "$1$\r$\n"
376     FindNext $0 $1
377     Goto "${Index}-Loop"
378   "${Index}-End:"
379   !undef Index
380 !macroend
381
382 !macro InstallFolder FOLDER
383   File /r "${FOLDER}"
384   Push "${FOLDER}"
385   Call InstallFolderInternal
386 !macroend
387
388 Function InstallFolderInternal
389   Pop $9
390   !define Index 'Line${__LINE__}'
391   FindFirst $0 $1 "$INSTDIR\$9\*"
392   StrCmp $0 "" "${Index}-End"
393   "${Index}-Loop:"
394     StrCmp $1 "" "${Index}-End"
395     StrCmp $1 "." "${Index}-Next"
396     StrCmp $1 ".." "${Index}-Next"
397     IfFileExists "$9\$1\*" 0 "${Index}-Write"
398       Push $0
399       Push $9
400       Push "$9\$1"
401       Call InstallFolderInternal
402       Pop $9
403       Pop $0
404       Goto "${Index}-Next"
405     "${Index}-Write:"
406     FileWrite $UninstallLog "$9\$1$\r$\n"
407     "${Index}-Next:"
408     FindNext $0 $1
409     Goto "${Index}-Loop"
410   "${Index}-End:"
411   !undef Index
412 FunctionEnd
413 ;;; End of Macros
414
415
416 ;;;;;;;;;;;;;;;;;;;;;;
417 ; Installer sections ;
418 ; The CORE of the    ;
419 ; installer          ;
420 ;;;;;;;;;;;;;;;;;;;;;;
421
422 Section $Name_Section01 SEC01
423   SectionIn 1 2 3 RO
424   SetShellVarContext all
425   SetOutPath "$INSTDIR"
426
427   !insertmacro OpenUninstallLog
428
429   ; VLC.exe, libvlc.dll
430   !insertmacro InstallFile vlc.exe
431   !insertmacro InstallFile vlc.exe.manifest
432   !insertmacro InstallFile vlc-cache-gen.exe
433
434   ; All dlls
435   !insertmacro InstallFile *.dll
436
437   ; Text files
438   !insertmacro InstallFile *.txt
439
440   ; Subfolders
441   !insertmacro InstallFolder plugins
442   !insertmacro InstallFolder locale
443 @BUILD_OSDMENU_TRUE@ !insertmacro InstallFolder osdmenu
444 @BUILD_SKINS_TRUE@   !insertmacro InstallFolder skins
445 @BUILD_HTTPD_TRUE@   !insertmacro InstallFolder http
446 @BUILD_LUA_TRUE@     !insertmacro InstallFolder lua
447
448   ; Generate the cache and add it to uninstall.log
449   ExecWait "$INSTDIR\vlc-cache-gen.exe $INSTDIR\plugins"
450   FindFirst $0 $1 "$INSTDIR\plugins\*.dat"
451   FileWrite $UninstallLog "plugins\$1$\r$\n"
452   FindClose $0
453
454
455
456   ; URLs
457   WriteIniStr "$INSTDIR\${PRODUCT_GROUP} Website.url" "InternetShortcut" "URL" \
458     "${PRODUCT_WEB_SITE}"
459   FileWrite $UninstallLog "${PRODUCT_GROUP} Website.url$\r$\n"
460   WriteIniStr "$INSTDIR\Documentation.url" "InternetShortcut" "URL" \
461     "${PRODUCT_WEB_SITE}/doc/"
462   FileWrite $UninstallLog "Documentation.url$\r$\n"
463   WriteIniStr "$INSTDIR\New_Skins.url" "InternetShortcut" "URL" \
464     "${PRODUCT_WEB_SITE}/vlc/skins.php"
465   FileWrite $UninstallLog "New_Skins.url$\r$\n"
466
467   !insertmacro CloseUninstallLog
468
469   ; Add VLC to "recommended programs" for the following extensions
470   WriteRegStr HKCR Applications\vlc.exe "" ""
471   WriteRegStr HKCR Applications\vlc.exe "FriendlyAppName" "VLC media player"
472   WriteRegStr HKCR Applications\vlc.exe\shell\Open "" $ContextMenuEntry_PlayWith
473   WriteRegStr HKCR Applications\vlc.exe\shell\Open\command "" \
474     '"$INSTDIR\vlc.exe" --started-from-file "%1"'
475   !insertmacro MacroAllExtensions WriteRegStrSupportedTypes
476
477 ; Windows default programs Registration
478   ; Vista and above detection
479   ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
480   StrCpy $R1 $R0 1
481   StrCmp $R1 '6' lbl_vista lbl_done
482
483   lbl_vista:
484   WriteRegStr HKLM "Software\RegisteredApplications" "VLC" "Software\Clients\Media\VLC\Capabilities"
485   WriteRegStr HKLM "Software\Clients\Media\VLC\Capabilities" "ApplicationName" "VLC media player"
486   WriteRegStr HKLM "Software\Clients\Media\VLC\Capabilities" "ApplicationDescription" "VLC - The video swiss knife"
487   WriteRegStr HKLM "Software\Clients\Media\VLC" "" "VLC media player"
488   WriteRegStr HKLM "Software\Clients\Media\VLC\InstallInfo" "HideIconsCommand" "$\"$INSTDIR\spad-setup.exe$\" /HideIcons /S"
489   WriteRegStr HKLM "Software\Clients\Media\VLC\InstallInfo" "ShowIconsCommand" "$\"$INSTDIR\spad-setup.exe$\" /ShowIcons /S"
490   WriteRegStr HKLM "Software\Clients\Media\VLC\InstallInfo" "ReinstallCommand" "$\"$INSTDIR\spad-setup.exe$\" /Reinstall /S"
491   WriteRegDWORD HKLM "Software\Clients\Media\VLC\InstallInfo" "IconsVisible" 0x001
492
493   lbl_done:
494 SectionEnd
495
496 Section $Name_Section02a SEC02a
497   SectionIn 1 2 3
498   CreateDirectory "$SMPROGRAMS\VideoLAN"
499   CreateShortCut "$SMPROGRAMS\VideoLAN\Reset VLC media player preferences and cache files.lnk" \
500     "$INSTDIR\vlc.exe" "--reset-config --reset-plugins-cache vlc://quit"
501   CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" \
502     "$INSTDIR\vlc.exe" ""
503   CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player skinned.lnk" \
504     "$INSTDIR\vlc.exe" "-Iskins"
505   CreateShortCut "$SMPROGRAMS\VideoLAN\Documentation.lnk" \
506     "$INSTDIR\Documentation.url"
507   CreateShortCut "$SMPROGRAMS\VideoLAN\Release Notes.lnk" \
508     "$INSTDIR\NEWS.txt" ""
509   CreateShortCut "$SMPROGRAMS\VideoLAN\${PRODUCT_GROUP} Website.lnk" \
510     "$INSTDIR\${PRODUCT_GROUP} Website.url"
511 SectionEnd
512
513 Section $Name_Section02b SEC02b
514   SectionIn 1 2 3
515   CreateShortCut "$DESKTOP\VLC media player.lnk" \
516     "$INSTDIR\vlc.exe" ""
517 SectionEnd
518
519 !ifdef INSTALL_MOZILLA
520 Section /o $Name_Section03 SEC03
521   SectionIn 3
522
523   SetOutPath "$INSTDIR"
524   !insertmacro OpenUninstallLog
525   !insertmacro InstallFile mozilla\npvlc.dll
526   !insertmacro InstallFile mozilla\npvlc.dll.manifest
527   !insertmacro CloseUninstallLog
528
529   !define Moz "SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION}"
530   WriteRegStr HKLM ${Moz} "Description" "VLC Multimedia Plugin"
531   WriteRegStr HKLM ${Moz} "Path" "$INSTDIR\npvlc.dll"
532   WriteRegStr HKLM ${Moz} "Product" "VLC media player"
533   WriteRegStr HKLM ${Moz} "Vendor" "VideoLAN"
534   WriteRegStr HKLM ${Moz} "Version" "${VERSION}"
535 SectionEnd
536 !endif
537
538 !ifdef INSTALL_ACTIVEX
539 Section $Name_Section04 SEC04
540   SectionIn 3
541
542   SetOutPath "$INSTDIR"
543   !insertmacro OpenUninstallLog
544   !insertmacro InstallFile activex\axvlc.dll
545   !insertmacro InstallFile activex\axvlc.dll.manifest
546   !insertmacro CloseUninstallLog
547   RegDLL "$INSTDIR\axvlc.dll"
548 SectionEnd
549 !endif
550
551
552 Section $Name_Section05 SEC05
553   SectionIn 1 2 3
554   WriteRegStr HKCR "AudioCD\shell\PlayWithVLC" "" $ContextMenuEntry_PlayWith
555   WriteRegStr HKCR "AudioCD\shell\PlayWithVLC\command" "" \
556     '"$INSTDIR\vlc.exe" --started-from-file cdda://%1'
557   WriteRegStr HKCR "DVD\shell\PlayWithVLC" "" $ContextMenuEntry_PlayWith
558   WriteRegStr HKCR "DVD\shell\PlayWithVLC\command" "" \
559     '"$INSTDIR\vlc.exe" --started-from-file dvd://%1'
560
561   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival" "VLCPlayDVDMovieOnArrival" ""
562   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "Action" $Action_OnArrivalDVD
563   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "DefaultIcon" '"$INSTDIR\vlc.exe",0'
564   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "InvokeProgID" "VLC.DVDMovie"
565   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "InvokeVerb" "Open"
566   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "Provider" "VideoLAN VLC media player"
567
568   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival" "VLCPlayCDAudioOnArrival" ""
569   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "Action" $Action_OnArrivalAudioCD
570   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "DefaultIcon" '"$INSTDIR\vlc.exe",0'
571   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "InvokeProgID" "VLC.CDAudio"
572   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "InvokeVerb" "Open"
573   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "Provider" "VideoLAN VLC media player"
574   WriteRegStr HKCR "VLC.DVDMovie" "" "VLC DVD Movie"
575   WriteRegStr HKCR "VLC.DVDMovie\shell" "" "Open"
576   WriteRegStr HKCR "VLC.DVDMovie\shell\Open\command" "" \
577     '"$INSTDIR\vlc.exe" --started-from-file dvd://%1'
578   WriteRegStr HKCR "VLC.DVDMovie\DefaultIcon" "" '"$INSTDIR\vlc.exe",0'
579   WriteRegStr HKCR "VLC.CDAudio" "" "VLC CD Audio"
580   WriteRegStr HKCR "VLC.CDAudio\shell" "" "Open"
581   WriteRegStr HKCR "VLC.CDAudio\shell\Open\command" "" \
582     '"$INSTDIR\vlc.exe" --started-from-file cdda://%1'
583   WriteRegStr HKCR "VLC.CDAudio\DefaultIcon" "" '"$INSTDIR\vlc.exe",0'
584
585 SectionEnd
586
587
588 SectionGroup /e !$Name_Section06 SEC06
589   SectionGroup $Name_SectionGroupAudio
590     !insertmacro MacroAudioExtensions RegisterExtensionSection
591   SectionGroupEnd
592   SectionGroup $Name_SectionGroupVideo
593     !insertmacro MacroVideoExtensions RegisterExtensionSection
594   SectionGroupEnd
595   SectionGroup $Name_SectionGroupOther
596     !insertmacro MacroOtherExtensions RegisterExtensionSection
597   SectionGroupEnd
598 SectionGroupEnd
599
600 Section $Name_Section07 SEC07
601   SectionIn 1 3
602   !insertmacro MacroAllExtensions AddContextMenu
603   !insertmacro AddContextMenuExt "Directory"
604 SectionEnd
605
606 Section $Name_Section08 SEC08
607   !insertmacro delprefs
608 SectionEnd
609
610 ; Installer section descriptions
611 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
612   !insertmacro MUI_DESCRIPTION_TEXT ${SEC01} $Desc_Section01
613   !insertmacro MUI_DESCRIPTION_TEXT ${SEC02a} $Desc_Section02a
614   !insertmacro MUI_DESCRIPTION_TEXT ${SEC02b} $Desc_Section02b
615 @BUILD_MOZILLA_TRUE@ !insertmacro MUI_DESCRIPTION_TEXT ${SEC03} $Desc_Section03
616 @BUILD_ACTIVEX_TRUE@ !insertmacro MUI_DESCRIPTION_TEXT ${SEC04} $Desc_Section04
617   !insertmacro MUI_DESCRIPTION_TEXT ${SEC05} $Desc_Section05
618   !insertmacro MUI_DESCRIPTION_TEXT ${SEC06} $Desc_Section06
619   !insertmacro MUI_DESCRIPTION_TEXT ${SEC07} $Desc_Section07
620   !insertmacro MUI_DESCRIPTION_TEXT ${SEC08} $Desc_Section08
621 !insertmacro MUI_FUNCTION_DESCRIPTION_END
622
623 ;;; Start function
624 Function .onInit
625
626 UAC_Elevate:
627     UAC::RunElevated
628     StrCmp 1223 $0 UAC_ElevationAborted
629     StrCmp 0 $0 0 UAC_Err
630     StrCmp 1 $1 0 UAC_Success
631     Quit
632
633 UAC_Err:
634     MessageBox mb_iconstop "Unable to elevate, error $0"
635     Abort
636
637 UAC_ElevationAborted:
638     MessageBox mb_iconstop "This installer requires admin access, aborting!"
639     Abort
640
641 UAC_Success:
642     StrCmp 1 $3 +4
643     StrCmp 3 $1 0 UAC_ElevationAborted
644     MessageBox mb_iconstop "This installer requires admin access, try again"
645     goto UAC_Elevate
646   !insertmacro MUI_LANGDLL_DISPLAY
647
648   !include "languages\english.nsh"
649   StrCmp $LANGUAGE ${LANG_FRENCH} French 0
650   StrCmp $LANGUAGE ${LANG_GERMAN} German 0
651   StrCmp $LANGUAGE ${LANG_ITALIAN} Italian 0
652   StrCmp $LANGUAGE ${LANG_HUNGARIAN} Hungarian 0
653   StrCmp $LANGUAGE ${LANG_ROMANIAN} Romanian 0
654   StrCmp $LANGUAGE ${LANG_CATALAN} Catalan 0
655   StrCmp $LANGUAGE ${LANG_BULGARIAN} Bulgarian 0
656   StrCmp $LANGUAGE ${LANG_SLOVAK} Slovak 0
657   StrCmp $LANGUAGE ${LANG_POLISH} Polish 0
658   StrCmp $LANGUAGE ${LANG_DUTCH} Dutch 0
659   StrCmp $LANGUAGE ${LANG_SIMPCHINESE} SChinese 0
660   StrCmp $LANGUAGE ${LANG_FINNISH} Finnish 0
661   StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} Brazilian EndLanguageCmp
662   French:
663   !include "languages\french.nsh"
664   Goto EndLanguageCmp
665   German:
666   !include "languages\german.nsh"
667   Goto EndLanguageCmp
668   Italian:
669   !include "languages\italian.nsh"
670   Goto EndLanguageCmp
671   Hungarian:
672   !include "languages\hungarian.nsh"
673   Goto EndLanguageCmp
674   Romanian:
675   !include "languages\romanian.nsh"
676   Goto EndLanguageCmp
677   Catalan:
678   !include "languages\catalan.nsh"
679   Goto EndLanguageCmp
680   Bulgarian:
681   !include "languages\bulgarian.nsh"
682   Goto EndLanguageCmp
683   Slovak:
684   !include "languages\slovak.nsh"
685   Goto EndLanguageCmp
686   Polish:
687   !include "languages\polish.nsh"
688   Goto EndLanguageCmp
689   Dutch:
690   !include "languages\dutch.nsh"
691   Goto EndLanguageCmp
692   Schinese:
693   !include "languages\schinese.nsh"
694   Goto EndLanguageCmp
695   Finnish:
696   !include "languages\finnish.nsh"
697   Goto EndLanguageCmp
698   Brazilian:
699   !include "languages\brazilian_portuguese.nsh"
700   EndLanguageCmp:
701
702   ReadRegStr $R0  ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
703   "UninstallString"
704   StrCmp $R0 "" done
705
706   MessageBox MB_YESNO|MB_ICONEXCLAMATION $Message_AlreadyInstalled IDNO done
707
708   ;Run the uninstaller
709   ;uninst:
710     ClearErrors
711     ExecWait '$R0 _?=$INSTDIR' ;Do not copy the uninstaller to a temp file
712   done:
713
714 FunctionEnd
715
716 Function .OnInstFailed
717     UAC::Unload
718 FunctionEnd
719
720 Function .OnInstSuccess
721     UAC::Unload
722 FunctionEnd
723
724 ;; End function
725 Section -Post
726   WriteUninstaller "$INSTDIR\uninstall.exe"
727   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "InstallDir" $INSTDIR
728   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "Version" "${VERSION}"
729   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\vlc.exe"
730
731   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
732     "DisplayName" "$(^Name)"
733   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
734     "UninstallString" "$INSTDIR\uninstall.exe"
735   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
736     "InstallLocation" "$INSTDIR"
737   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
738     "DisplayIcon" "$INSTDIR\vlc.exe"
739   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
740     "DisplayVersion" "${PRODUCT_VERSION}"
741   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
742     "URLInfoAbout" "${PRODUCT_WEB_SITE}"
743   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
744     "Publisher" "${PRODUCT_PUBLISHER}"
745   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
746     "VersionMajor"  "@VERSION_MAJOR@"
747   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
748     "VersionMinor" "@VERSION_MINOR@"
749 SectionEnd
750
751 ;;;;;;;;;;;;;;;;;;;;;;;;
752 ; Uninstaller sections ;
753 ;;;;;;;;;;;;;;;;;;;;;;;;
754
755 ; TrimNewlines (copied from NSIS documentation)
756 ; input, top of stack  (e.g. whatever$\r$\n)
757 ; output, top of stack (replaces, with e.g. whatever)
758 ; modifies no other variables.
759
760 Function un.TrimNewlines
761  Exch $R0
762  Push $R1
763  Push $R2
764  StrCpy $R1 0
765
766  loop:
767    IntOp $R1 $R1 - 1
768    StrCpy $R2 $R0 1 $R1
769    StrCmp $R2 "$\r" loop
770    StrCmp $R2 "$\n" loop
771    IntOp $R1 $R1 + 1
772    IntCmp $R1 0 no_trim_needed
773    StrCpy $R0 $R0 $R1
774
775  no_trim_needed:
776    Pop $R2
777    Pop $R1
778    Exch $R0
779 FunctionEnd
780
781 Function un.RemoveEmptyDirs
782   Pop $9
783   !define Index 'Line${__LINE__}'
784   FindFirst $0 $1 "$INSTDIR$9*"
785   StrCmp $0 "" "${Index}-End"
786   "${Index}-Loop:"
787     StrCmp $1 "" "${Index}-End"
788     StrCmp $1 "." "${Index}-Next"
789     StrCmp $1 ".." "${Index}-Next"
790       Push $0
791       Push $1
792       Push $9
793       Push "$9$1\"
794       Call un.RemoveEmptyDirs
795       Pop $9
796       Pop $1
797       Pop $0
798     "${Index}-Remove:"
799     RMDir "$INSTDIR$9$1"
800     "${Index}-Next:"
801     FindNext $0 $1
802     Goto "${Index}-Loop"
803   "${Index}-End:"
804   FindClose $0
805   !undef Index
806 FunctionEnd
807
808 Section "un.$Name_Section91" SEC91
809   SectionIn 1 2 3 RO
810   SetShellVarContext all
811
812   !insertmacro MacroAllExtensions DeleteContextMenu
813   !insertmacro MacroAllExtensions UnRegisterExtensionSection
814   !insertmacro DeleteContextMenuExt "Directory"
815
816   ;remove activex plugin
817   UnRegDLL "$INSTDIR\axvlc.dll"
818   Delete /REBOOTOK "$INSTDIR\axvlc.dll"
819   Delete /REBOOTOK "$INSTDIR\axvlc.dll.manifest"
820
821   ;remove mozilla plugin
822   Push $R0
823   Push $R1
824   Push $R2
825
826   !define Index 'Line${__LINE__}'
827   StrCpy $R1 "0"
828
829   "${Index}-Loop:"
830
831     ; Check for Key
832     EnumRegKey $R0 HKLM "SOFTWARE\Mozilla" "$R1"
833     StrCmp $R0 "" "${Index}-End"
834     IntOp $R1 $R1 + 1
835     ReadRegStr $R2 HKLM "SOFTWARE\Mozilla\$R0\Extensions" "Plugins"
836     StrCmp $R2 "" "${Index}-Loop" ""
837
838     ; old files (0.8.5 and before) that may be lying around
839     Delete /REBOOTOK "$R2\npvlc.dll"
840     Delete /REBOOTOK "$R2\libvlc.dll"
841     Delete /REBOOTOK "$R2\vlcintf.xpt"
842     Goto "${Index}-Loop"
843
844   "${Index}-End:"
845   !undef Index
846   Delete /REBOOTOK "$INSTDIR\npvlc.dll"
847   Delete /REBOOTOK "$INSTDIR\npvlc.dll.manifest"
848
849   RMDir "$SMPROGRAMS\VideoLAN"
850   RMDir /r $SMPROGRAMS\VideoLAN
851
852   FileOpen $UninstallLog "$INSTDIR\uninstall.log" r
853   UninstallLoop:
854     ClearErrors
855     FileRead $UninstallLog $R0
856     IfErrors UninstallEnd
857     Push $R0
858     Call un.TrimNewLines
859     Pop $R0
860     Delete "$INSTDIR\$R0"
861     Goto UninstallLoop
862   UninstallEnd:
863   FileClose $UninstallLog
864   Delete "$INSTDIR\uninstall.log"
865   Delete "$INSTDIR\uninstall.exe"
866   Push "\"
867   Call un.RemoveEmptyDirs
868   RMDir "$INSTDIR"
869
870   DeleteRegKey HKLM Software\VideoLAN
871
872   DeleteRegKey HKCR Applications\vlc.exe
873   DeleteRegKey HKCR AudioCD\shell\PlayWithVLC
874   DeleteRegKey HKCR DVD\shell\PlayWithVLC
875   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival" "VLCPlayDVDMovieOnArrival"
876   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival
877   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival" "VLCPlayCDAudioOnArrival"
878   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival
879   DeleteRegKey HKLM Software\Clients\Media\VLC
880   DeleteRegValue HKLM "Software\RegisteredApplications" "VLC"
881   DeleteRegKey HKCR "VLC.MediaFile"
882
883   DeleteRegKey HKLM \
884     "SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION}"
885
886   DeleteRegKey HKLM \
887     "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
888
889   Delete "$DESKTOP\VLC media player.lnk"
890
891   DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
892   DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
893   SetAutoClose true
894 SectionEnd
895
896 Section /o "un.$Name_Section92" SEC92
897   !insertmacro delprefs
898 SectionEnd
899
900 ; Uninstaller section descriptions
901 !insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
902   !insertmacro MUI_DESCRIPTION_TEXT ${SEC91} $Desc_Section91
903   !insertmacro MUI_DESCRIPTION_TEXT ${SEC92} $Desc_Section92
904 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END
905
906 Function un.OnUnInstFailed
907     UAC::Unload
908 FunctionEnd
909
910 Function un.OnUnInstSuccess
911     UAC::Unload
912     Delete "$INSTDIR\UAC.dll"
913 FunctionEnd
914
915 Function un.onInit
916
917 UAC_Elevate:
918     UAC::RunElevated
919     StrCmp 1223 $0 UAC_ElevationAborted
920     StrCmp 0 $0 0 UAC_Err
921     StrCmp 1 $1 0 UAC_Success
922     Quit
923
924 UAC_Err:
925     MessageBox mb_iconstop "Unable to elevate, error $0"
926     Abort
927
928 UAC_ElevationAborted:
929     MessageBox mb_iconstop "This installer requires admin access, aborting!"
930     Abort
931
932 UAC_Success:
933     StrCmp 1 $3 +4
934     StrCmp 3 $1 0 UAC_ElevationAborted
935     MessageBox mb_iconstop "This installer requires admin access, try again"
936     goto UAC_Elevate
937
938   !insertmacro MUI_UNGETLANGUAGE
939
940   !include "languages\english.nsh"
941   StrCmp $LANGUAGE ${LANG_FRENCH} French 0
942   StrCmp $LANGUAGE ${LANG_GERMAN} German 0
943   StrCmp $LANGUAGE ${LANG_ITALIAN} Italian 0
944   StrCmp $LANGUAGE ${LANG_HUNGARIAN} Hungarian 0
945   StrCmp $LANGUAGE ${LANG_ROMANIAN} Romanian 0
946   StrCmp $LANGUAGE ${LANG_CATALAN} Catalan 0
947   StrCmp $LANGUAGE ${LANG_BULGARIAN} Bulgarian 0
948   StrCmp $LANGUAGE ${LANG_SLOVAK} Slovak 0
949   StrCmp $LANGUAGE ${LANG_POLISH} Polish 0
950   StrCmp $LANGUAGE ${LANG_DUTCH} Dutch 0
951   StrCmp $LANGUAGE ${LANG_SIMPCHINESE} SChinese 0
952   StrCmp $LANGUAGE ${LANG_FINNISH} Finnish 0
953   StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} Brazilian EndLanguageCmp
954   French:
955   !include "languages\french.nsh"
956   Goto EndLanguageCmp
957   German:
958   !include "languages\german.nsh"
959   Goto EndLanguageCmp
960   Italian:
961   !include "languages\italian.nsh"
962   Goto EndLanguageCmp
963   Hungarian:
964   !include "languages\hungarian.nsh"
965   Goto EndLanguageCmp
966   Romanian:
967   !include "languages\romanian.nsh"
968   Goto EndLanguageCmp
969   Catalan:
970   !include "languages\catalan.nsh"
971   Goto EndLanguageCmp
972   Bulgarian:
973   !include "languages\bulgarian.nsh"
974   Goto EndLanguageCmp
975   Slovak:
976   !include "languages\slovak.nsh"
977   Goto EndLanguageCmp
978   Polish:
979   !include "languages\polish.nsh"
980   Goto EndLanguageCmp
981   Dutch:
982   !include "languages\dutch.nsh"
983   Goto EndLanguageCmp
984   Schinese:
985   !include "languages\schinese.nsh"
986   Goto EndLanguageCmp
987   Finnish:
988   !include "languages\finnish.nsh"
989   Goto EndLanguageCmp
990   Brazilian:
991   !include "languages\brazilian_portuguese.nsh"
992   EndLanguageCmp:
993
994 FunctionEnd