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