]> git.sesse.net Git - vlc/blob - extras/package/win32/vlc.win32.nsi.in
Add .nuv in interface and installer.
[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 "vlc48x48.ico"
60   !define MUI_UNICON "vlc48x48.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} ".wma"
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} ".ts"
248   !insertmacro ${_action} ".vob"
249   !insertmacro ${_action} ".wmv"
250 !macroend
251
252 !macro MacroOtherExtensions _action
253   !insertmacro ${_action} ".asx"
254   !insertmacro ${_action} ".bin"
255   !insertmacro ${_action} ".cue"
256   !insertmacro ${_action} ".m3u"
257   !insertmacro ${_action} ".pls"
258   !insertmacro ${_action} ".vlc"
259   !insertmacro ${_action} ".xspf"
260 !macroend
261
262 ; One macro to rule them all
263 !macro MacroAllExtensions _action
264   !insertmacro MacroAudioExtensions ${_action}
265   !insertmacro MacroVideoExtensions ${_action}
266   !insertmacro MacroOtherExtensions ${_action}
267 !macroend
268
269 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
270 ; 2. Context menu entries ;
271 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
272
273 ; Generic function for adding the context menu for one ext.
274 !macro AddContextMenuExt EXT
275   WriteRegStr HKCR ${EXT}\shell\PlayWithVLC "" $ContextMenuEntry_PlayWith
276   WriteRegStr HKCR ${EXT}\shell\PlayWithVLC\command "" '$INSTDIR\vlc.exe --started-from-file --no-playlist-enqueue "%1"'
277
278   WriteRegStr HKCR ${EXT}\shell\AddToPlaylistVLC "" $ContextMenuEntry_AddToPlaylist
279   WriteRegStr HKCR ${EXT}\shell\AddToPlaylistVLC\command "" '$INSTDIR\vlc.exe --started-from-file --playlist-enqueue "%1"'
280 !macroend
281
282 !macro AddContextMenu EXT
283   Push $R0
284   ReadRegStr $R0 HKCR ${EXT} ""
285   !insertmacro AddContextMenuExt $R0
286   Pop $R0
287 !macroend
288
289 !macro DeleteContextMenuExt EXT
290   DeleteRegKey HKCR ${EXT}\shell\PlayWithVLC
291   DeleteRegKey HKCR ${EXT}\shell\AddToPlaylistVLC
292 !macroend
293
294 !macro DeleteContextMenu EXT
295   Push $R0
296   ReadRegStr $R0 HKCR ${EXT} ""
297   !insertmacro DeleteContextMenuExt $R0
298   Pop $R0
299 !macroend
300
301 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
302 ; 3. Delete prefs and cache ;
303 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
304
305 !macro delprefs
306   StrCpy $0 0
307   !define Index 'Line${__LINE__}'
308   "${Index}-Loop:"
309   ; FIXME
310   ; this will loop through all the logged users and "virtual" windows users
311   ; (it looks like users are only present in HKEY_USERS when they are logged in)
312     ClearErrors
313     EnumRegKey $1 HKU "" $0
314     StrCmp $1 "" "${Index}-End"
315     IntOp $0 $0 + 1
316     ReadRegStr $2 HKU "$1\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" AppData
317     StrCmp $2 "" "${Index}-Loop"
318     RMDir /r "$2\vlc"
319     Goto "${Index}-Loop"
320   "${Index}-End:"
321   !undef Index
322 !macroend
323
324 ;;;;;;;;;;;;;;;
325 ; 4. Logging  ;
326 ;;;;;;;;;;;;;;;
327 Var UninstallLog
328 !macro OpenUninstallLog
329   FileOpen $UninstallLog "$INSTDIR\uninstall.log" a
330   FileSeek $UninstallLog 0 END
331 !macroend
332
333 !macro CloseUninstallLog
334   FileClose $UninstallLog
335   SetFileAttributes "$INSTDIR\uninstall.log" HIDDEN
336 !macroend
337
338 ;;;;;;;;;;;;;;;;;;;;
339 ; 5. Installations ;
340 ;;;;;;;;;;;;;;;;;;;;
341 !macro InstallFile FILEREGEX
342   File "${FILEREGEX}"
343   !define Index 'Line${__LINE__}'
344   FindFirst $0 $1 "$INSTDIR\${FILEREGEX}"
345   StrCmp $0 "" "${Index}-End"
346   "${Index}-Loop:"
347     StrCmp $1 "" "${Index}-End"
348     FileWrite $UninstallLog "$1$\r$\n"
349     FindNext $0 $1
350     Goto "${Index}-Loop"
351   "${Index}-End:"
352   !undef Index
353 !macroend
354
355 !macro InstallFolder FOLDER
356   File /r "${FOLDER}"
357   Push "${FOLDER}"
358   Call InstallFolderInternal
359 !macroend
360
361 Function InstallFolderInternal
362   Pop $9
363   !define Index 'Line${__LINE__}'
364   FindFirst $0 $1 "$INSTDIR\$9\*"
365   StrCmp $0 "" "${Index}-End"
366   "${Index}-Loop:"
367     StrCmp $1 "" "${Index}-End"
368     StrCmp $1 "." "${Index}-Next"
369     StrCmp $1 ".." "${Index}-Next"
370     IfFileExists "$9\$1\*" 0 "${Index}-Write"
371       Push $0
372       Push $9
373       Push "$9\$1"
374       Call InstallFolderInternal
375       Pop $9
376       Pop $0
377       Goto "${Index}-Next"
378     "${Index}-Write:"
379     FileWrite $UninstallLog "$9\$1$\r$\n"
380     "${Index}-Next:"
381     FindNext $0 $1
382     Goto "${Index}-Loop"
383   "${Index}-End:"
384   !undef Index
385 FunctionEnd
386 ;;; End of Macros
387
388
389 ;;;;;;;;;;;;;;;;;;;;;;
390 ; Installer sections ;
391 ; The CORE of the    ;
392 ; installer          ;
393 ;;;;;;;;;;;;;;;;;;;;;;
394   
395 Section $Name_Section01 SEC01
396   SectionIn 1 2 3 RO
397   SetShellVarContext all
398   SetOutPath "$INSTDIR"
399
400   !insertmacro OpenUninstallLog
401
402   ; VLC.exe, libvlc.dll
403   !insertmacro InstallFile vlc.exe
404   !insertmacro InstallFile vlc.exe.manifest
405   !ifdef LIBVLCCORE_DLL
406       !insertmacro InstallFile ${LIBVLCCORE_DLL}
407   !endif
408   !ifdef LIBVLC_DLL
409       !insertmacro InstallFile ${LIBVLC_DLL}
410   !endif
411
412   ; Text files
413   !insertmacro InstallFile *.txt
414
415   ; Subfolders
416   !insertmacro InstallFolder plugins
417   !insertmacro InstallFolder locale
418   !insertmacro InstallFolder osdmenu
419   !insertmacro InstallFolder skins
420   !insertmacro InstallFolder http
421   !insertmacro InstallFolder lua
422
423   ; URLs
424   WriteIniStr "$INSTDIR\${PRODUCT_GROUP} Website.url" "InternetShortcut" "URL" \
425     "${PRODUCT_WEB_SITE}"
426   FileWrite $UninstallLog "${PRODUCT_GROUP} Website.url$\r$\n"
427   WriteIniStr "$INSTDIR\Documentation.url" "InternetShortcut" "URL" \
428     "${PRODUCT_WEB_SITE}/doc/"
429   FileWrite $UninstallLog "Documentation.url$\r$\n"
430   WriteIniStr "$INSTDIR\New_Skins.url" "InternetShortcut" "URL" \
431     "${PRODUCT_WEB_SITE}/vlc/skins.php"
432   FileWrite $UninstallLog "New_Skins.url$\r$\n"
433
434   !insertmacro CloseUninstallLog
435
436   ; Add VLC to "recomended programs" for the following extensions
437   WriteRegStr HKCR Applications\vlc.exe "" ""
438   WriteRegStr HKCR Applications\vlc.exe "FriendlyAppName" "VLC media player"
439   WriteRegStr HKCR Applications\vlc.exe\shell\Play "" $ContextMenuEntry_PlayWith
440   WriteRegStr HKCR Applications\vlc.exe\shell\Play\command "" \
441     '$INSTDIR\vlc.exe --started-from-file "%1"'
442   !insertmacro MacroAllExtensions WriteRegStrSupportedTypes
443
444 ; Vista Registration
445   ; Vista detection
446   ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
447   StrCpy $R1 $R0 3
448   StrCmp $R1 '6.0' lbl_vista lbl_done
449
450   lbl_vista:
451   WriteRegStr HKLM "Software\RegisteredApplications" "VLC" "Software\Clients\Media\VLC\Capabilities"
452   WriteRegStr HKLM "Software\Clients\Media\VLC\Capabilities" "ApplicationName" "VLC media player"
453   WriteRegStr HKLM "Software\Clients\Media\VLC\Capabilities" "ApplicationDescription" "VLC - The video swiss knife"
454
455   lbl_done:
456 SectionEnd
457
458 Section $Name_Section02a SEC02a
459   SectionIn 1 2 3
460   CreateDirectory "$SMPROGRAMS\VideoLAN"
461   CreateDirectory "$SMPROGRAMS\VideoLAN\Quick Settings"
462   CreateDirectory "$SMPROGRAMS\VideoLAN\Quick Settings\Audio"
463   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Audio\Set Audio mode to DirectX (default).lnk" \
464     "$INSTDIR\vlc.exe" "--aout aout_directx --save-config vlc://quit"
465   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Audio\Set Audio mode to Waveout.lnk" \
466     "$INSTDIR\vlc.exe" "--aout waveout --save-config vlc://quit"
467   CreateDirectory "$SMPROGRAMS\VideoLAN\Quick Settings\Interface"
468   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Interface\Set Main Interface to Skinnable.lnk" \
469     "$INSTDIR\vlc.exe" "-I skins --save-config vlc://quit"
470   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Interface\Set Main Interface to Qt (default).lnk" \
471     "$INSTDIR\vlc.exe" "-I qt --save-config vlc://quit"
472   CreateDirectory "$SMPROGRAMS\VideoLAN\Quick Settings\Video"
473   ; FIXME add detection for Vista. Direct3D will be default there, for all others it's DirectX
474   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to Direct3D.lnk" \
475     "$INSTDIR\vlc.exe" "--vout direct3d --overlay --directx-hw-yuv --save-config vlc://quit"
476   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to Direct3D (no hardware acceleration).lnk" \
477     "$INSTDIR\vlc.exe" "--vout direct3d --overlay --no-directx-hw-yuv --save-config vlc://quit"
478   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to DirectX.lnk" \
479     "$INSTDIR\vlc.exe" "--vout directx --overlay --directx-hw-yuv --save-config vlc://quit"
480   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to DirectX (no hardware acceleration).lnk" \
481     "$INSTDIR\vlc.exe" "--vout directx --no-overlay --no-directx-hw-yuv --save-config vlc://quit"
482   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to DirectX (no video overlay).lnk" \
483     "$INSTDIR\vlc.exe" "--vout directx --no-overlay --directx-hw-yuv --save-config vlc://quit"
484   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Video\Set Video mode to OpenGL.lnk" \
485     "$INSTDIR\vlc.exe" "--vout opengl --overlay --save-config vlc://quit"
486   CreateShortCut "$SMPROGRAMS\VideoLAN\Quick Settings\Reset VLC media player preferences and cache files.lnk" \
487     "$INSTDIR\vlc.exe" "--reset-config --reset-plugins-cache vlc://quit"
488   CreateShortCut "$SMPROGRAMS\VideoLAN\Documentation.lnk" \
489     "$INSTDIR\Documentation.url"
490   CreateShortCut "$SMPROGRAMS\VideoLAN\Release Notes.lnk" \
491     "$INSTDIR\NEWS.txt" ""
492   CreateShortCut "$SMPROGRAMS\VideoLAN\${PRODUCT_GROUP} Website.lnk" \
493     "$INSTDIR\${PRODUCT_GROUP} Website.url"
494   CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" \
495     "$INSTDIR\vlc.exe" ""
496 SectionEnd
497
498 Section $Name_Section02b SEC02b
499   SectionIn 1 2 3
500   CreateShortCut "$DESKTOP\VLC media player.lnk" \
501     "$INSTDIR\vlc.exe" ""
502 SectionEnd
503
504 Section /o $Name_Section03 SEC03
505   SectionIn 3
506
507   SetOutPath "$INSTDIR"
508   !insertmacro OpenUninstallLog
509   !insertmacro InstallFile mozilla\npvlc.dll
510   !insertmacro CloseUninstallLog
511
512   !define Moz "SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION}"
513   WriteRegStr HKLM ${Moz} "Description" "VLC Multimedia Plugin"
514   WriteRegStr HKLM ${Moz} "Path" "$INSTDIR\npvlc.dll"
515   WriteRegStr HKLM ${Moz} "Product" "VLC media player"
516   WriteRegStr HKLM ${Moz} "Vendor" "VideoLAN"
517   WriteRegStr HKLM ${Moz} "Version" "${VERSION}"
518
519  ; for very old version of mozilla, these lines may be needed
520  ;Push $R0
521  ;Push $R1
522  ;Push $R2
523
524  ;!define Index 'Line${__LINE__}'
525  ;StrCpy $R1 "0"
526
527  ;"${Index}-Loop:"
528
529  ;  ; Check for Key
530  ;  EnumRegKey $R0 HKLM "SOFTWARE\Mozilla" "$R1"
531  ;  StrCmp $R0 "" "${Index}-End"
532  ;  IntOp $R1 $R1 + 1
533  ;  ReadRegStr $R2 HKLM "SOFTWARE\Mozilla\$R0\Extensions" "Plugins"
534  ;  StrCmp $R2 "" "${Index}-Loop" ""
535
536  ;  CopyFiles "$INSTDIR\npvlc.dll" "$R2"
537  ;  !ifdef LIBVLC_DLL
538  ;  CopyFiles ${LIBVLC_DLL} "$R2"
539  ;  !endif
540  ;  !ifdef LIBVLC_CONTROL_DLL
541  ;  CopyFiles ${LIBVLC_CONTROL_DLL} "$R2"
542  ;  !endif
543  ;  Goto "${Index}-Loop"
544
545  ;"${Index}-End:"
546  ;!undef Index
547
548 SectionEnd
549
550 Section $Name_Section04 SEC04
551   SectionIn 1 3
552   SetOutPath "$INSTDIR"
553   !insertmacro OpenUninstallLog
554   !insertmacro InstallFile activex\axvlc.dll
555   !insertmacro CloseUninstallLog
556   RegDLL "$INSTDIR\axvlc.dll"
557 SectionEnd
558
559 Section $Name_Section05 SEC05
560   SectionIn 1 2 3
561   WriteRegStr HKCR "AudioCD\shell\PlayWithVLC" "" $ContextMenuEntry_PlayWith
562   WriteRegStr HKCR "AudioCD\shell\PlayWithVLC\command" "" \
563     "$INSTDIR\vlc.exe --started-from-file cdda://%1"
564   WriteRegStr HKCR "DVD\shell\PlayWithVLC" "" $ContextMenuEntry_PlayWith
565   WriteRegStr HKCR "DVD\shell\PlayWithVLC\command" "" \
566     "$INSTDIR\vlc.exe --started-from-file dvd://%1"
567
568   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival" "VLCPlayDVDMovieOnArrival" ""
569   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "Action" $Action_OnArrivalDVD
570   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "DefaultIcon" '"$INSTDIR\vlc.exe",0'
571   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "InvokeProgID" "VLC.DVDMovie"
572   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "InvokeVerb" "play"
573   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival" "Provider" "VideoLAN VLC media player"
574
575   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival" "VLCPlayCDAudioOnArrival" ""
576   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "Action" $Action_OnArrivalAudioCD
577   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "DefaultIcon" '"$INSTDIR\vlc.exe",0'
578   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "InvokeProgID" "VLC.CDAudio"
579   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "InvokeVerb" "play"
580   WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival" "Provider" "VideoLAN VLC media player"
581   WriteRegStr HKCR "VLC.DVDMovie" "" "VLC DVD Movie"
582   WriteRegStr HKCR "VLC.DVDMovie\shell" "" "Play"
583   WriteRegStr HKCR "VLC.DVDMovie\shell\Play\command" "" \
584     '$INSTDIR\vlc.exe --started-from-file dvd://%1'
585   WriteRegStr HKCR "VLC.DVDMovie\DefaultIcon" "" '"$INSTDIR\vlc.exe",0'
586   WriteRegStr HKCR "VLC.CDAudio" "" "VLC CD Audio"
587   WriteRegStr HKCR "VLC.CDAudio\shell" "" "Play"
588   WriteRegStr HKCR "VLC.CDAudio\shell\Play\command" "" \
589     '$INSTDIR\vlc.exe --started-from-file cdda://%1'
590   WriteRegStr HKCR "VLC.CDAudio\DefaultIcon" "" '"$INSTDIR\vlc.exe",0'
591
592 SectionEnd
593
594 SectionGroup $Name_Section06 SEC06
595   SectionGroup $Name_SectionGroupAudio
596     !insertmacro MacroAudioExtensions RegisterExtensionSection
597   SectionGroupEnd
598   SectionGroup $Name_SectionGroupVideo
599     !insertmacro MacroVideoExtensions RegisterExtensionSection
600   SectionGroupEnd
601   SectionGroup $Name_SectionGroupOther
602     !insertmacro MacroOtherExtensions RegisterExtensionSection
603   SectionGroupEnd
604 SectionGroupEnd
605
606 Section $Name_Section07 SEC07
607   SectionIn 3
608   !insertmacro MacroAllExtensions AddContextMenu
609   !insertmacro AddContextMenuExt "Directory"
610 SectionEnd
611
612 Section /o $Name_Section08 SEC08
613   !insertmacro delprefs
614 SectionEnd
615
616 ; Installer section descriptions
617 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
618   !insertmacro MUI_DESCRIPTION_TEXT ${SEC01} $Desc_Section01
619   !insertmacro MUI_DESCRIPTION_TEXT ${SEC02a} $Desc_Section02a
620   !insertmacro MUI_DESCRIPTION_TEXT ${SEC02b} $Desc_Section02b
621   !insertmacro MUI_DESCRIPTION_TEXT ${SEC03} $Desc_Section03
622   !insertmacro MUI_DESCRIPTION_TEXT ${SEC04} $Desc_Section04
623   !insertmacro MUI_DESCRIPTION_TEXT ${SEC05} $Desc_Section05
624   !insertmacro MUI_DESCRIPTION_TEXT ${SEC06} $Desc_Section06
625   !insertmacro MUI_DESCRIPTION_TEXT ${SEC07} $Desc_Section07
626   !insertmacro MUI_DESCRIPTION_TEXT ${SEC08} $Desc_Section08
627 !insertmacro MUI_FUNCTION_DESCRIPTION_END
628
629 ;;; Start function
630 Function .onInit
631   !insertmacro MUI_LANGDLL_DISPLAY
632   
633   !include "languages\english.nsh"
634   StrCmp $LANGUAGE ${LANG_FRENCH} French EndLanguageCmp
635   French:
636   !include "languages\french.nsh"
637   EndLanguageCmp:
638
639   ReadRegStr $R0  ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
640   "UninstallString"
641   StrCmp $R0 "" done
642
643   MessageBox MB_YESNO|MB_ICONEXCLAMATION $Message_AlreadyInstalled IDNO done
644
645   ;Run the uninstaller
646   ;uninst:
647     ClearErrors
648     ExecWait '$R0 _?=$INSTDIR' ;Do not copy the uninstaller to a temp file
649   done:
650   
651 FunctionEnd
652
653 ;; End function
654 Section -Post
655   WriteUninstaller "$INSTDIR\uninstall.exe"
656   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "InstallDir" $INSTDIR
657   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "Version" "${VERSION}"
658   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\vlc.exe"
659
660   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
661     "DisplayName" "$(^Name)"
662   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
663     "UninstallString" "$INSTDIR\uninstall.exe"
664   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
665     "DisplayIcon" "$INSTDIR\vlc.exe"
666   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
667     "DisplayVersion" "${PRODUCT_VERSION}"
668   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
669     "URLInfoAbout" "${PRODUCT_WEB_SITE}"
670   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
671     "Publisher" "${PRODUCT_PUBLISHER}"
672 SectionEnd
673
674 ;;;;;;;;;;;;;;;;;;;;;;;;
675 ; Uninstaller sections ;
676 ;;;;;;;;;;;;;;;;;;;;;;;;
677
678 ; TrimNewlines (copied from NSIS documentation)
679 ; input, top of stack  (e.g. whatever$\r$\n)
680 ; output, top of stack (replaces, with e.g. whatever)
681 ; modifies no other variables.
682
683 Function un.TrimNewlines
684  Exch $R0
685  Push $R1
686  Push $R2
687  StrCpy $R1 0
688
689  loop:
690    IntOp $R1 $R1 - 1
691    StrCpy $R2 $R0 1 $R1
692    StrCmp $R2 "$\r" loop
693    StrCmp $R2 "$\n" loop
694    IntOp $R1 $R1 + 1
695    IntCmp $R1 0 no_trim_needed
696    StrCpy $R0 $R0 $R1
697
698  no_trim_needed:
699    Pop $R2
700    Pop $R1
701    Exch $R0
702 FunctionEnd
703
704 Function un.RemoveEmptyDirs
705   Pop $9
706   !define Index 'Line${__LINE__}'
707   FindFirst $0 $1 "$INSTDIR$9*"
708   StrCmp $0 "" "${Index}-End"
709   "${Index}-Loop:"
710     StrCmp $1 "" "${Index}-End"
711     StrCmp $1 "." "${Index}-Next"
712     StrCmp $1 ".." "${Index}-Next"
713       Push $0
714       Push $1
715       Push $9
716       Push "$9$1\"
717       Call un.RemoveEmptyDirs
718       Pop $9
719       Pop $1
720       Pop $0
721     "${Index}-Remove:"
722     RMDir "$INSTDIR$9$1"
723     "${Index}-Next:"
724     FindNext $0 $1
725     Goto "${Index}-Loop"
726   "${Index}-End:"
727   FindClose $0
728   !undef Index
729 FunctionEnd
730
731 Section "un.$Name_Section91" SEC91
732   SectionIn 1 2 3 RO
733   SetShellVarContext all
734
735   !insertmacro MacroAllExtensions DeleteContextMenu
736   !insertmacro MacroAllExtensions UnRegisterExtensionSection
737   !insertmacro DeleteContextMenuExt "Directory"
738
739   ;remove activex plugin
740   UnRegDLL "$INSTDIR\axvlc.dll"
741   Delete /REBOOTOK "$INSTDIR\axvlc.dll"
742
743   ;remove mozilla plugin
744   Push $R0
745   Push $R1
746   Push $R2
747
748   !define Index 'Line${__LINE__}'
749   StrCpy $R1 "0"
750
751   "${Index}-Loop:"
752
753     ; Check for Key
754     EnumRegKey $R0 HKLM "SOFTWARE\Mozilla" "$R1"
755     StrCmp $R0 "" "${Index}-End"
756     IntOp $R1 $R1 + 1
757     ReadRegStr $R2 HKLM "SOFTWARE\Mozilla\$R0\Extensions" "Plugins"
758     StrCmp $R2 "" "${Index}-Loop" ""
759
760     ; old files (0.8.5 and before) that may be lying around
761     Delete /REBOOTOK "$R2\npvlc.dll"
762     Delete /REBOOTOK "$R2\libvlc.dll"
763     Delete /REBOOTOK "$R2\vlcintf.xpt"
764     Goto "${Index}-Loop"
765
766   "${Index}-End:"
767   !undef Index
768   Delete /REBOOTOK "$INSTDIR\npvlc.dll"
769
770   RMDir "$SMPROGRAMS\VideoLAN"
771   RMDir /r $SMPROGRAMS\VideoLAN
772
773   FileOpen $UninstallLog "$INSTDIR\uninstall.log" r
774   UninstallLoop:
775     ClearErrors
776     FileRead $UninstallLog $R0
777     IfErrors UninstallEnd
778     Push $R0
779     Call un.TrimNewLines
780     Pop $R0
781     Delete "$INSTDIR\$R0"
782     Goto UninstallLoop
783   UninstallEnd:
784   FileClose $UninstallLog
785   Delete "$INSTDIR\uninstall.log"
786   Delete "$INSTDIR\uninstall.exe"
787   Push "\"
788   Call un.RemoveEmptyDirs
789   RMDir "$INSTDIR"
790
791   DeleteRegKey HKLM Software\VideoLAN
792
793   DeleteRegKey HKCR Applications\vlc.exe
794   DeleteRegKey HKCR AudioCD\shell\PlayWithVLC
795   DeleteRegKey HKCR DVD\shell\PlayWithVLC
796   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival" "VLCPlayDVDMovieOnArrival"
797   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival
798   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival" "VLCPlayCDAudioOnArrival"
799   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival
800   DeleteRegKey HKLM Software\Clients\Media\VLC
801   DeleteRegKey HKCR "VLC.MediaFile"
802
803   DeleteRegKey HKLM \
804     "SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION}"
805
806   DeleteRegKey HKLM \
807     "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
808
809   Delete "$DESKTOP\VLC media player.lnk"
810
811   DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
812   DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
813   SetAutoClose true
814 SectionEnd
815
816 Section /o "un.$Name_Section92" SEC92
817   !insertmacro delprefs
818 SectionEnd
819
820 ; Uninstaller section descriptions
821 !insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
822   !insertmacro MUI_DESCRIPTION_TEXT ${SEC91} $Desc_Section91
823   !insertmacro MUI_DESCRIPTION_TEXT ${SEC92} $Desc_Section92
824 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END
825
826 ;Function un.onUninstSuccess
827 ;  HideWindow
828 ;  MessageBox MB_ICONINFORMATION|MB_OK \
829 ;    "$(^Name) was successfully removed from your computer."
830 ;FunctionEnd
831
832 Function un.onInit
833   !insertmacro MUI_UNGETLANGUAGE
834   
835   !include "languages\english.nsh"
836   StrCmp $LANGUAGE ${LANG_FRENCH} French EndLanguageCmp
837   French:
838   !include "languages\french.nsh"
839   EndLanguageCmp:
840   
841 FunctionEnd