]> git.sesse.net Git - vlc/blob - extras/package/win32/vlc.win32.nsi.in
fa90fed296e3ac8b44f2899b3efaa1d055f18db1
[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_JAPANESE} Japanese 0
662 ;  StrCmp $LANGUAGE ${LANG_BENGALI} Bengali 0
663 ;  StrCmp $LANGUAGE ${LANG_PUNJABI} Punjabi 0
664 ;  StrCmp $LANGUAGE ${LANG_SLOVENIAN} Slovenian 0
665   StrCmp $LANGUAGE ${LANG_SPANISH} Spanish 0
666   StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} Brazilian EndLanguageCmp
667   French:
668   !include "languages\french.nsh"
669   Goto EndLanguageCmp
670   German:
671   !include "languages\german.nsh"
672   Goto EndLanguageCmp
673   Italian:
674   !include "languages\italian.nsh"
675   Goto EndLanguageCmp
676   Hungarian:
677   !include "languages\hungarian.nsh"
678   Goto EndLanguageCmp
679   Romanian:
680   !include "languages\romanian.nsh"
681   Goto EndLanguageCmp
682   Catalan:
683   !include "languages\catalan.nsh"
684   Goto EndLanguageCmp
685   Bulgarian:
686   !include "languages\bulgarian.nsh"
687   Goto EndLanguageCmp
688   Slovak:
689   !include "languages\slovak.nsh"
690   Goto EndLanguageCmp
691   Polish:
692   !include "languages\polish.nsh"
693   Goto EndLanguageCmp
694   Dutch:
695   !include "languages\dutch.nsh"
696   Goto EndLanguageCmp
697   Schinese:
698   !include "languages\schinese.nsh"
699   Goto EndLanguageCmp
700   Finnish:
701   !include "languages\finnish.nsh"
702   Goto EndLanguageCmp
703   Japanese:
704   !include "languages\japanese.nsh"
705   Goto EndLanguageCmp
706   Bengali:
707   !include "languages\bengali.nsh"
708   Goto EndLanguageCmp
709   Punjabi:
710   !include "languages\punjabi.nsh"
711   Goto EndLanguageCmp
712   Slovenian:
713   !include "languages\slovenian.nsh"
714   Goto EndLanguageCmp
715   Spanish:
716   !include "languages\spanish.nsh"
717   Goto EndLanguageCmp
718   Brazilian:
719   !include "languages\brazilian_portuguese.nsh"
720   EndLanguageCmp:
721
722   ReadRegStr $R0  ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
723   "UninstallString"
724   StrCmp $R0 "" done
725
726   MessageBox MB_YESNO|MB_ICONEXCLAMATION $Message_AlreadyInstalled IDNO done
727
728   ;Run the uninstaller
729   ;uninst:
730     ClearErrors
731     ExecWait '$R0 _?=$INSTDIR' ;Do not copy the uninstaller to a temp file
732   done:
733
734 FunctionEnd
735
736 Function .OnInstFailed
737     UAC::Unload
738 FunctionEnd
739
740 Function .OnInstSuccess
741     UAC::Unload
742 FunctionEnd
743
744 ;; End function
745 Section -Post
746   WriteUninstaller "$INSTDIR\uninstall.exe"
747   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "InstallDir" $INSTDIR
748   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "Version" "${VERSION}"
749   WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\vlc.exe"
750
751   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
752     "DisplayName" "$(^Name)"
753   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
754     "UninstallString" "$INSTDIR\uninstall.exe"
755   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
756     "InstallLocation" "$INSTDIR"
757   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
758     "DisplayIcon" "$INSTDIR\vlc.exe"
759   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
760     "DisplayVersion" "${PRODUCT_VERSION}"
761   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
762     "URLInfoAbout" "${PRODUCT_WEB_SITE}"
763   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
764     "Publisher" "${PRODUCT_PUBLISHER}"
765   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
766     "VersionMajor"  "@VERSION_MAJOR@"
767   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" \
768     "VersionMinor" "@VERSION_MINOR@"
769 SectionEnd
770
771 ;;;;;;;;;;;;;;;;;;;;;;;;
772 ; Uninstaller sections ;
773 ;;;;;;;;;;;;;;;;;;;;;;;;
774
775 ; TrimNewlines (copied from NSIS documentation)
776 ; input, top of stack  (e.g. whatever$\r$\n)
777 ; output, top of stack (replaces, with e.g. whatever)
778 ; modifies no other variables.
779
780 Function un.TrimNewlines
781  Exch $R0
782  Push $R1
783  Push $R2
784  StrCpy $R1 0
785
786  loop:
787    IntOp $R1 $R1 - 1
788    StrCpy $R2 $R0 1 $R1
789    StrCmp $R2 "$\r" loop
790    StrCmp $R2 "$\n" loop
791    IntOp $R1 $R1 + 1
792    IntCmp $R1 0 no_trim_needed
793    StrCpy $R0 $R0 $R1
794
795  no_trim_needed:
796    Pop $R2
797    Pop $R1
798    Exch $R0
799 FunctionEnd
800
801 Function un.RemoveEmptyDirs
802   Pop $9
803   !define Index 'Line${__LINE__}'
804   FindFirst $0 $1 "$INSTDIR$9*"
805   StrCmp $0 "" "${Index}-End"
806   "${Index}-Loop:"
807     StrCmp $1 "" "${Index}-End"
808     StrCmp $1 "." "${Index}-Next"
809     StrCmp $1 ".." "${Index}-Next"
810       Push $0
811       Push $1
812       Push $9
813       Push "$9$1\"
814       Call un.RemoveEmptyDirs
815       Pop $9
816       Pop $1
817       Pop $0
818     "${Index}-Remove:"
819     RMDir "$INSTDIR$9$1"
820     "${Index}-Next:"
821     FindNext $0 $1
822     Goto "${Index}-Loop"
823   "${Index}-End:"
824   FindClose $0
825   !undef Index
826 FunctionEnd
827
828 Section "un.$Name_Section91" SEC91
829   SectionIn 1 2 3 RO
830   SetShellVarContext all
831
832   !insertmacro MacroAllExtensions DeleteContextMenu
833   !insertmacro MacroAllExtensions UnRegisterExtensionSection
834   !insertmacro DeleteContextMenuExt "Directory"
835
836   ;remove activex plugin
837   UnRegDLL "$INSTDIR\axvlc.dll"
838   Delete /REBOOTOK "$INSTDIR\axvlc.dll"
839   Delete /REBOOTOK "$INSTDIR\axvlc.dll.manifest"
840
841   ;remove mozilla plugin
842   Push $R0
843   Push $R1
844   Push $R2
845
846   !define Index 'Line${__LINE__}'
847   StrCpy $R1 "0"
848
849   "${Index}-Loop:"
850
851     ; Check for Key
852     EnumRegKey $R0 HKLM "SOFTWARE\Mozilla" "$R1"
853     StrCmp $R0 "" "${Index}-End"
854     IntOp $R1 $R1 + 1
855     ReadRegStr $R2 HKLM "SOFTWARE\Mozilla\$R0\Extensions" "Plugins"
856     StrCmp $R2 "" "${Index}-Loop" ""
857
858     ; old files (0.8.5 and before) that may be lying around
859     Delete /REBOOTOK "$R2\npvlc.dll"
860     Delete /REBOOTOK "$R2\libvlc.dll"
861     Delete /REBOOTOK "$R2\vlcintf.xpt"
862     Goto "${Index}-Loop"
863
864   "${Index}-End:"
865   !undef Index
866   Delete /REBOOTOK "$INSTDIR\npvlc.dll"
867   Delete /REBOOTOK "$INSTDIR\npvlc.dll.manifest"
868
869   RMDir "$SMPROGRAMS\VideoLAN"
870   RMDir /r $SMPROGRAMS\VideoLAN
871
872   FileOpen $UninstallLog "$INSTDIR\uninstall.log" r
873   UninstallLoop:
874     ClearErrors
875     FileRead $UninstallLog $R0
876     IfErrors UninstallEnd
877     Push $R0
878     Call un.TrimNewLines
879     Pop $R0
880     Delete "$INSTDIR\$R0"
881     Goto UninstallLoop
882   UninstallEnd:
883   FileClose $UninstallLog
884   Delete "$INSTDIR\uninstall.log"
885   Delete "$INSTDIR\uninstall.exe"
886   Push "\"
887   Call un.RemoveEmptyDirs
888   RMDir "$INSTDIR"
889
890   DeleteRegKey HKLM Software\VideoLAN
891
892   DeleteRegKey HKCR Applications\vlc.exe
893   DeleteRegKey HKCR AudioCD\shell\PlayWithVLC
894   DeleteRegKey HKCR DVD\shell\PlayWithVLC
895   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival" "VLCPlayDVDMovieOnArrival"
896   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayDVDMovieOnArrival
897   DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival" "VLCPlayCDAudioOnArrival"
898   DeleteRegKey HKLM Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\VLCPlayCDAudioOnArrival
899   DeleteRegKey HKLM Software\Clients\Media\VLC
900   DeleteRegValue HKLM "Software\RegisteredApplications" "VLC"
901   DeleteRegKey HKCR "VLC.MediaFile"
902
903   DeleteRegKey HKLM \
904     "SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION}"
905
906   DeleteRegKey HKLM \
907     "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
908
909   Delete "$DESKTOP\VLC media player.lnk"
910
911   DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
912   DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
913   SetAutoClose true
914 SectionEnd
915
916 Section /o "un.$Name_Section92" SEC92
917   !insertmacro delprefs
918 SectionEnd
919
920 ; Uninstaller section descriptions
921 !insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
922   !insertmacro MUI_DESCRIPTION_TEXT ${SEC91} $Desc_Section91
923   !insertmacro MUI_DESCRIPTION_TEXT ${SEC92} $Desc_Section92
924 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END
925
926 Function un.OnUnInstFailed
927     UAC::Unload
928 FunctionEnd
929
930 Function un.OnUnInstSuccess
931     UAC::Unload
932     Delete "$INSTDIR\UAC.dll"
933 FunctionEnd
934
935 Function un.onInit
936
937 UAC_Elevate:
938     UAC::RunElevated
939     StrCmp 1223 $0 UAC_ElevationAborted
940     StrCmp 0 $0 0 UAC_Err
941     StrCmp 1 $1 0 UAC_Success
942     Quit
943
944 UAC_Err:
945     MessageBox mb_iconstop "Unable to elevate, error $0"
946     Abort
947
948 UAC_ElevationAborted:
949     MessageBox mb_iconstop "This installer requires admin access, aborting!"
950     Abort
951
952 UAC_Success:
953     StrCmp 1 $3 +4
954     StrCmp 3 $1 0 UAC_ElevationAborted
955     MessageBox mb_iconstop "This installer requires admin access, try again"
956     goto UAC_Elevate
957
958   !insertmacro MUI_UNGETLANGUAGE
959
960   !include "languages\english.nsh"
961   StrCmp $LANGUAGE ${LANG_FRENCH} French 0
962   StrCmp $LANGUAGE ${LANG_GERMAN} German 0
963   StrCmp $LANGUAGE ${LANG_ITALIAN} Italian 0
964   StrCmp $LANGUAGE ${LANG_HUNGARIAN} Hungarian 0
965   StrCmp $LANGUAGE ${LANG_ROMANIAN} Romanian 0
966   StrCmp $LANGUAGE ${LANG_CATALAN} Catalan 0
967   StrCmp $LANGUAGE ${LANG_BULGARIAN} Bulgarian 0
968   StrCmp $LANGUAGE ${LANG_SLOVAK} Slovak 0
969   StrCmp $LANGUAGE ${LANG_POLISH} Polish 0
970   StrCmp $LANGUAGE ${LANG_DUTCH} Dutch 0
971   StrCmp $LANGUAGE ${LANG_SIMPCHINESE} SChinese 0
972   StrCmp $LANGUAGE ${LANG_FINNISH} Finnish 0
973   StrCmp $LANGUAGE ${LANG_JAPANESE} Japanese 0
974 ;  StrCmp $LANGUAGE ${LANG_BENGALI} Bengali 0
975 ;  StrCmp $LANGUAGE ${LANG_PUNJABI} Punjabi 0
976 ;  StrCmp $LANGUAGE ${LANG_SLOVENIAN} Slovenian 0
977   StrCmp $LANGUAGE ${LANG_SPANISH} Spanish 0
978   StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} Brazilian EndLanguageCmp
979   French:
980   !include "languages\french.nsh"
981   Goto EndLanguageCmp
982   German:
983   !include "languages\german.nsh"
984   Goto EndLanguageCmp
985   Italian:
986   !include "languages\italian.nsh"
987   Goto EndLanguageCmp
988   Hungarian:
989   !include "languages\hungarian.nsh"
990   Goto EndLanguageCmp
991   Romanian:
992   !include "languages\romanian.nsh"
993   Goto EndLanguageCmp
994   Catalan:
995   !include "languages\catalan.nsh"
996   Goto EndLanguageCmp
997   Bulgarian:
998   !include "languages\bulgarian.nsh"
999   Goto EndLanguageCmp
1000   Slovak:
1001   !include "languages\slovak.nsh"
1002   Goto EndLanguageCmp
1003   Polish:
1004   !include "languages\polish.nsh"
1005   Goto EndLanguageCmp
1006   Dutch:
1007   !include "languages\dutch.nsh"
1008   Goto EndLanguageCmp
1009   Schinese:
1010   !include "languages\schinese.nsh"
1011   Goto EndLanguageCmp
1012   Finnish:
1013   !include "languages\finnish.nsh"
1014   Goto EndLanguageCmp
1015   Japanese:
1016   !include "languages\japanese.nsh"
1017   Goto EndLanguageCmp
1018   Bengali:
1019   !include "languages\bengali.nsh"
1020   Goto EndLanguageCmp
1021   Punjabi:
1022   !include "languages\punjabi.nsh"
1023   Goto EndLanguageCmp
1024   Slovenian:
1025   !include "languages\slovenian.nsh"
1026   Goto EndLanguageCmp
1027   Spanish:
1028   !include "languages\spanish.nsh"
1029   Goto EndLanguageCmp
1030   Brazilian:
1031   !include "languages\brazilian_portuguese.nsh"
1032   EndLanguageCmp:
1033   
1034 FunctionEnd