-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathinstall.nsi.in
More file actions
1249 lines (919 loc) · 32.5 KB
/
Copy pathinstall.nsi.in
File metadata and controls
1249 lines (919 loc) · 32.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;FileZilla 3 installation script
;Written by Tim Kosse <mailto:tim.kosse@filezilla-project.org>
;
;Requires NSIS >= 2.35
;--------------------------------
; Build environment
!define top_srcdir @top_srcdir@
!define srcdir @srcdir@
!define VERSION @PACKAGE_VERSION@
!define VERSION_MAJOR @PACKAGE_VERSION_MAJOR@
!define VERSION_MINOR @PACKAGE_VERSION_MINOR@
!define VERSION_FULL @PACKAGE_VERSION_MAJOR@.@PACKAGE_VERSION_MINOR@.@PACKAGE_VERSION_MICRO@.@PACKAGE_VERSION_NANO@
!define PUBLISHER "FileZilla Project"
!define WEBSITE_URL "http://filezilla-project.org/"
!addplugindir @srcdir@
;--------------------------------
;General
;Name and file
Name "FileZilla Client ${VERSION}"
OutFile "FileZilla_3_setup.exe"
SetCompressor /SOLID LZMA
;Default installation folder
InstallDir "$PROGRAMFILES\FileZilla FTP Client"
;Get installation folder from registry if available
InstallDirRegKey HKLM "Software\FileZilla Client" ""
RequestExecutionLevel user
;--------------------------------
; Libtool executable target path
!include libtoolexecutablesubdir.nsh
!ifndef LT_EXEDIR
!define LT_EXEDIR ""
!endif
;--------------------------------
;Include Modern UI and functions
!include "MUI2.nsh"
!include "WordFunc.nsh"
!include "Library.nsh"
!include "WinVer.nsh"
!include "FileFunc.nsh"
!include "Memento.nsh"
!include "@srcdir@\process_running.nsh"
;--------------------------------
;Installer's VersionInfo
VIProductVersion "${VERSION_FULL}"
VIAddVersionKey "CompanyName" "${PUBLISHER}"
VIAddVersionKey "ProductName" "FileZilla"
VIAddVersionKey "ProductVersion" "${VERSION}"
VIAddVersionKey "FileDescription" "FileZilla FTP Client"
VIAddVersionKey "FileVersion" "${VERSION}"
VIAddVersionKey "LegalCopyright" "${PUBLISHER}"
VIAddVersionKey "OriginalFilename" "FileZilla_${VERSION}_win32-setup.exe"
;--------------------------------
;Required functions
!insertmacro GetParameters
!insertmacro GetOptions
!insertmacro un.GetParameters
!insertmacro un.GetOptions
;--------------------------------
;Variables
Var MUI_TEMP
Var STARTMENU_FOLDER
Var PREVIOUS_INSTALLDIR
Var PREVIOUS_VERSION
Var PREVIOUS_VERSION_STATE
Var REINSTALL_UNINSTALL
Var REINSTALL_UNINSTALLBUTTON
Var ALL_USERS_DEFAULT
Var ALL_USERS
Var ALL_USERS_BUTTON
Var IS_ADMIN
Var USERNAME
Var PERFORM_UPDATE
Var GetInstalledSize.total
;--------------------------------
;Interface Settings
!define MUI_ICON "${top_srcdir}/src/interface/resources/FileZilla.ico"
!define MUI_UNICON "${srcdir}/uninstall.ico"
!define MUI_ABORTWARNING
;--------------------------------
;Memento settings
!define MEMENTO_REGISTRY_ROOT SHELL_CONTEXT
!define MEMENTO_REGISTRY_KEY "Software\FileZilla Client"
;--------------------------------
;Pages
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageLicensePre
!insertmacro MUI_PAGE_LICENSE "${top_srcdir}\COPYING"
Page custom PageReinstall PageLeaveReinstall
Page custom PageAllUsers PageLeaveAllUsers
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageComponentsPre
!insertmacro MUI_PAGE_COMPONENTS
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageDirectoryPre
!insertmacro MUI_PAGE_DIRECTORY
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\FileZilla Client"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Startmenu"
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "FileZilla FTP Client"
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageStartmenuPre
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
!define MUI_PAGE_CUSTOMFUNCTION_SHOW PageInstfilesShow
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE PostInstPage
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION CustomFinishRun
!define MUI_FINISHPAGE_RUN_TEXT "&Start FileZilla now"
!insertmacro MUI_PAGE_FINISH
!define MUI_PAGE_CUSTOMFUNCTION_PRE un.ConfirmPagePre
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!define MUI_PAGE_CUSTOMFUNCTION_PRE un.FinishPagePre
!insertmacro MUI_UNPAGE_FINISH
Function GetUserInfo
ClearErrors
UserInfo::GetName
${If} ${Errors}
StrCpy $IS_ADMIN 1
Return
${EndIf}
Pop $USERNAME
UserInfo::GetAccountType
Pop $R0
${Switch} $R0
${Case} "Admin"
${Case} "Power"
StrCpy $IS_ADMIN 1
${Break}
${Default}
StrCpy $IS_ADMIN 0
${Break}
${EndSwitch}
FunctionEnd
Function UpdateShellVarContext
${If} $ALL_USERS == 1
SetShellVarContext all
${Else}
SetShellVarContext current
${EndIf}
FunctionEnd
Function ReadAllUsersCommandline
${GetParameters} $R0
${GetOptions} $R0 "/user" $R1
${Unless} ${Errors}
${If} $R1 == "current"
${OrIf} $R1 == "=current"
StrCpy $ALL_USERS 0
${ElseIf} $R1 == "all"
${OrIf} $R1 == "=all"
StrCpy $ALL_USERS 1
${Else}
MessageBox MB_ICONSTOP "Invalid option for /user. Has to be either /user=all or /user=current" /SD IDOK
Abort
${EndIf}
${EndUnless}
Call UpdateShellVarContext
FunctionEnd
Function CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
; Make sure directory is valid
Push $R0
Push $R1
StrCpy $R0 "$PREVIOUS_INSTALLDIR" "" -1
${If} $R0 == '\'
${OrIf} $R0 == '/'
StrCpy $R0 $PREVIOUS_INSTALLDIR*.*
${Else}
StrCpy $R0 $PREVIOUS_INSTALLDIR\*.*
${EndIf}
${IfNot} ${FileExists} $R0
StrCpy $PREVIOUS_INSTALLDIR ""
${EndIf}
Pop $R1
Pop $R0
${EndIf}
FunctionEnd
Function ReadPreviousVersion
ReadRegStr $PREVIOUS_INSTALLDIR HKLM "Software\FileZilla Client" ""
Call CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
;Detect version
ReadRegStr $PREVIOUS_VERSION HKLM "Software\FileZilla Client" "Version"
${If} $PREVIOUS_VERSION != ""
StrCpy $ALL_USERS 1
SetShellVarContext all
return
${EndIf}
${EndIf}
ReadRegStr $PREVIOUS_INSTALLDIR HKCU "Software\FileZilla Client" ""
Call CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
;Detect version
ReadRegStr $PREVIOUS_VERSION HKCU "Software\FileZilla Client" "Version"
${If} $PREVIOUS_VERSION != ""
StrCpy $ALL_USERS 0
SetShellVarContext current
return
${EndIf}
${EndIf}
FunctionEnd
Function LoadPreviousSettings
; Component selection
${MementoSectionRestore}
; Startmenu
!define ID "Application"
!ifdef MUI_STARTMENUPAGE_${ID}_REGISTRY_ROOT & MUI_STARTMENUPAGE_${ID}_REGISTRY_KEY & MUI_STARTMENUPAGE_${ID}_REGISTRY_VALUENAME
ReadRegStr $mui.StartMenuPage.RegistryLocation "${MUI_STARTMENUPAGE_${ID}_REGISTRY_ROOT}" "${MUI_STARTMENUPAGE_${ID}_REGISTRY_KEY}" "${MUI_STARTMENUPAGE_${ID}_REGISTRY_VALUENAME}"
${if} $mui.StartMenuPage.RegistryLocation != ""
StrCpy "$STARTMENU_FOLDER" $mui.StartMenuPage.RegistryLocation
${else}
StrCpy "$STARTMENU_FOLDER" ""
${endif}
!undef ID
!endif
${If} $PREVIOUS_INSTALLDIR != ""
StrCpy $INSTDIR $PREVIOUS_INSTALLDIR
${EndIf}
FunctionEnd
Function ReadUpdateCommandline
${GetParameters} $R0
${GetOptions} $R0 "/update" $R1
${If} ${Errors}
StrCpy $PERFORM_UPDATE 0
${Else}
StrCpy $PERFORM_UPDATE 1
${EndIf}
FunctionEnd
Function .onInit
${Unless} ${AtLeastWin2000}
MessageBox MB_YESNO|MB_ICONSTOP "Unsupported operating system.$\nFileZilla ${VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?" /SD IDNO IDYES installonoldwindows
Abort
installonoldwindows:
${EndUnless}
UAC_unicode::RunElevated
StrCmp 1223 $0 UAC_ElevationAborted ; UAC dialog aborted by user?
StrCmp 0 $0 0 UAC_Err ; Error?
StrCmp 1 $1 0 UAC_Success ;Are we the real deal or just the wrapper?
Quit
UAC_Err:
MessageBox mb_iconstop "Could not elevate process (errorcode $0), continuing with normal user privileges." /SD IDOK
UAC_ElevationAborted:
UAC_Success:
; /update argument
Call ReadUpdateCommandline
Call GetUserInfo
; Initialize $ALL_USERS with default value
${If} $IS_ADMIN == 1
StrCpy $ALL_USERS 1
${Else}
StrCpy $ALL_USERS 0
${EndIf}
Call UpdateShellVarContext
; See if previous version exists
; This can change ALL_USERS
Call ReadPreviousVersion
; Load _all_ previous settings.
; Need to do it now as up to now, $ALL_USERS was possibly reflecting a
; previous installation. After this call, $ALL_USERS reflects the requested
; installation mode for this installation.
Call LoadPreviousSettings
Call ReadAllUsersCommandline
${If} $ALL_USERS == 1
${If} $IS_ADMIN == 0
${If} $PREVIOUS_VERSION != ""
MessageBox MB_ICONSTOP "FileZilla has been previously installed for all users.$\nPlease restart the installer with Administrator privileges." /SD IDOK
Abort
${Else}
MessageBox MB_ICONSTOP "Cannot install for all users.$\nPlease restart the installer with Administrator privileges." /SD IDOK
Abort
${EndIf}
${EndIf}
${EndIf}
${If} $PREVIOUS_VERSION == ""
StrCpy $PERFORM_UPDATE 0
${Else}
Push "${VERSION}"
Push $PREVIOUS_VERSION
Call FZVersionCompare
${If} $PREVIOUS_VERSION_STATE != "newer"
StrCpy $PERFORM_UPDATE 0
${EndIf}
${EndIf}
StrCpy $ALL_USERS_DEFAULT $ALL_USERS
FunctionEnd
Function FZVersionCompare
Exch $1
Exch
Exch $0
Push $2
Push $3
Push $4
versioncomparebegin:
${If} $0 == ""
${AndIf} $1 == ""
StrCpy $PREVIOUS_VERSION_STATE "same"
goto versioncomparedone
${EndIf}
StrCpy $2 0
StrCpy $3 0
; Parse rc / beta suffixes for segments
StrCpy $4 $0 2
${If} $4 == "rc"
StrCpy $2 100
StrCpy $0 $0 "" 2
${Else}
StrCpy $4 $0 4
${If} $4 == "beta"
StrCpy $0 $0 "" 4
${Else}
StrCpy $2 10000
${EndIf}
${EndIf}
StrCpy $4 $1 2
${If} $4 == "rc"
StrCpy $3 100
StrCpy $1 $1 "" 2
${Else}
StrCpy $4 $1 4
${If} $4 == "beta"
StrCpy $1 $1 "" 4
${Else}
StrCpy $3 10000
${EndIf}
${EndIf}
split1loop:
StrCmp $0 "" split1loopdone
StrCpy $4 $0 1
StrCpy $0 $0 "" 1
StrCmp $4 "." split1loopdone
StrCmp $4 "-" split1loopdone
StrCpy $2 $2$4
goto split1loop
split1loopdone:
split2loop:
StrCmp $1 "" split2loopdone
StrCpy $4 $1 1
StrCpy $1 $1 "" 1
StrCmp $4 "." split2loopdone
StrCmp $4 "-" split2loopdone
StrCpy $3 $3$4
goto split2loop
split2loopdone:
${If} $2 > $3
StrCpy $PREVIOUS_VERSION_STATE "newer"
${ElseIf} $3 > $2
StrCpy $PREVIOUS_VERSION_STATE "older"
${Else}
goto versioncomparebegin
${EndIf}
versioncomparedone:
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
Function PageLicensePre
${If} $PERFORM_UPDATE == 1
Abort
${EndIf}
FunctionEnd
Function PageReinstall
${If} $PREVIOUS_VERSION == ""
Abort
${EndIf}
${If} $PERFORM_UPDATE == 1
StrCpy $REINSTALL_UNINSTALL 1
Abort
${EndIf}
nsDialogs::Create /NOUNLOAD 1018
Pop $0
${If} $PREVIOUS_VERSION_STATE == "newer"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose how you want to install FileZilla."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "An older version of FileZilla is installed on your system. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Upgrade FileZilla using previous settings (recommended)"
Pop $REINSTALL_UNINSTALLBUTTON
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Change settings (advanced)"
Pop $R0
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
${ElseIf} $PREVIOUS_VERSION_STATE == "older"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose how you want to install FileZilla."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "A newer version of FileZilla is already installed! It is not recommended that you downgrade to an older version. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Downgrade FileZilla using previous settings (recommended)"
Pop $REINSTALL_UNINSTALLBUTTON
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Change settings (advanced)"
Pop $R0
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
${ElseIf} $PREVIOUS_VERSION_STATE == "same"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose the maintenance option to perform."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "FileZilla ${VERSION} is already installed. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Add/Remove/Reinstall components"
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Uninstall FileZilla"
Pop $REINSTALL_UNINSTALLBUTTON
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 2
${EndIf}
${Else}
MessageBox MB_ICONSTOP "Unknown value of PREVIOUS_VERSION_STATE, aborting" /SD IDOK
Abort
${EndIf}
${If} $REINSTALL_UNINSTALL == "1"
SendMessage $REINSTALL_UNINSTALLBUTTON ${BM_SETCHECK} 1 0
${Else}
SendMessage $R0 ${BM_SETCHECK} 1 0
${EndIf}
nsDialogs::Show
FunctionEnd
Function RunUninstaller
${If} $ALL_USERS_DEFAULT == 1
ReadRegStr $R1 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "UninstallString"
${Else}
ReadRegStr $R1 HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "UninstallString"
${EndIf}
${If} $R1 == ""
Return
${EndIf}
;Run uninstaller
HideWindow
ClearErrors
${If} $PREVIOUS_VERSION_STATE == "same"
${AndIf} $REINSTALL_UNINSTALL == "1"
ExecWait '$R1 _?=$INSTDIR'
${Else}
ExecWait '$R1 /frominstall /keepstartmenudir _?=$INSTDIR'
${EndIf}
IfErrors no_remove_uninstaller
IfFileExists "$INSTDIR\uninstall.exe" 0 no_remove_uninstaller
Delete "$R1"
RMDir $INSTDIR
no_remove_uninstaller:
FunctionEnd
Function PageLeaveReinstall
SendMessage $REINSTALL_UNINSTALLBUTTON ${BM_GETCHECK} 0 0 $R0
${If} $R0 == 1
; Option to uninstall old version selected
StrCpy $REINSTALL_UNINSTALL 1
${Else}
; Custom up/downgrade or add/remove/reinstall
StrCpy $REINSTALL_UNINSTALL 2
${EndIf}
${If} $REINSTALL_UNINSTALL == 1
${If} $PREVIOUS_VERSION_STATE == "same"
Call RunUninstaller
Quit
${Else}
; Need to reload defaults. User could have
; chosen custom, change something, went back and selected
; the express option.
StrCpy $ALL_USERS $ALL_USERS_DEFAULT
Call UpdateShellVarContext
Call LoadPreviousSettings
${EndIf}
${EndIf}
FunctionEnd
Function PageAllUsers
${If} $REINSTALL_UNINSTALL == 1
; Keep same settings
Abort
${EndIf}
!insertmacro MUI_HEADER_TEXT "Choose Installation Options" "Who should this application be installed for?"
nsDialogs::Create /NOUNLOAD 1018
Pop $0
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 30 "Please select whether you wish to make this software available to all users or just yourself."
Pop $R0
${If} $IS_ADMIN == 1
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP}
${Else}
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP}|${WS_DISABLED}
${EndIf}
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 55 100% 30 "&Anyone who uses this computer (all users)"
Pop $ALL_USERS_BUTTON
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}
${If} $USERNAME != ""
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 85 100% 50 "&Only for me ($USERNAME)"
${Else}
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 85 100% 50 "&Only for me"
${EndIf}
Pop $R0
${If} $PREVIOUS_VERSION != ""
${If} $ALL_USERS_DEFAULT == 1
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "FileZilla has been previously installed for all users."
${Else}
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "FileZilla has been previously installed for this user only."
${EndIf}
${Else}
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "Installation for all users requires Administrator privileges."
${EndIf}
Pop $R1
${If} $ALL_USERS == "1"
SendMessage $ALL_USERS_BUTTON ${BM_SETCHECK} 1 0
${Else}
SendMessage $R0 ${BM_SETCHECK} 1 0
${EndIf}
nsDialogs::Show
FunctionEnd
Function PageLeaveAllUsers
SendMessage $ALL_USERS_BUTTON ${BM_GETCHECK} 0 0 $R0
${If} $R0 == 0
StrCpy $ALL_USERS "0"
${Else}
StrCpy $ALL_USERS "1"
${EndIf}
Call UpdateShellVarContext
FunctionEnd
Function PageComponentsPre
${If} $REINSTALL_UNINSTALL == 1
Abort
${EndIf}
FunctionEnd
Function PageDirectoryPre
${If} $REINSTALL_UNINSTALL == "1"
Abort
${EndIf}
FunctionEnd
Function PageStartmenuPre
${If} $REINSTALL_UNINSTALL == "1"
${If} "$STARTMENU_FOLDER" == ""
StrCpy "$STARTMENU_FOLDER" ">"
${EndIf}
Abort
${EndIf}
FunctionEnd
Function CheckFileZillaRunning
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${If} $PERFORM_UPDATE == 1
StrCpy $R0 10
${Else}
StrCpy $R0 2
${EndIf}
${While} $R1 == 1
${If} $R0 == 0
${ExitWhile}
${EndIf}
Sleep 500
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
IntOp $R0 $R0 - 1
${EndWhile}
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${While} $R1 == 1
MessageBox MB_ABORTRETRYIGNORE|MB_DEFBUTTON2 "FileZilla appears to be running.$\nPlease close all running instances of FileZilla before continuing the installation." /SD IDIGNORE IDABORT CheckFileZillaRunning_abort IDIGNORE CheckFileZillaRunning_ignore
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${EndWhile}
CheckFileZillaRunning_ignore:
Return
CheckFileZillaRunning_abort:
Quit
FunctionEnd
Function PageInstfilesShow
Call CheckFileZillaRunning
${If} $REINSTALL_UNINSTALL != ""
Call RunUninstaller
BringToFront
${EndIf}
FunctionEnd
Function .OnInstFailed
UAC_unicode::Unload
FunctionEnd
Function .onInstSuccess
${MementoSectionSave}
UAC_unicode::Unload
FunctionEnd
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;Installer Sections
Section "FileZilla Client" SecMain
SectionIn 1 RO
SetOutPath "$INSTDIR"
File "..\src\interface\${LT_EXEDIR}FileZilla.exe"
File "..\src\putty\${LT_EXEDIR}fzsftp.exe"
File "..\src\putty\${LT_EXEDIR}fzputtygen.exe"
File "${srcdir}\mingwm10.dll"
File "${top_srcdir}\GPL.html"
File "${top_srcdir}\NEWS"
File "${top_srcdir}\AUTHORS"
SetOutPath "$INSTDIR\resources"
File "${top_srcdir}/src\interface\resources\*.xrc"
File "${top_srcdir}/src\interface\resources\*.png"
File "${top_srcdir}/src\interface\resources\defaultfilters.xml"
File "${top_srcdir}/src\interface\resources\finished.wav"
File "${top_srcdir}/src\interface\resources\theme.xml"
SetOutPath "$INSTDIR\resources\16x16"
File "${top_srcdir}/src\interface\resources\16x16\*.png"
SetOutPath "$INSTDIR\resources\32x32"
File "${top_srcdir}/src\interface\resources\32x32\*.png"
SetOutPath "$INSTDIR\resources\48x48"
File "${top_srcdir}/src\interface\resources\48x48\*.png"
;Create uninstaller
WriteUninstaller "$INSTDIR\uninstall.exe"
WriteRegStr SHCTX "Software\FileZilla Client" "" $INSTDIR
WriteRegStr SHCTX "Software\FileZilla Client" "Version" "${VERSION}"
WriteRegExpandStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "UninstallString" "$INSTDIR\uninstall.exe"
WriteRegExpandStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "InstallLocation" "$INSTDIR"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "DisplayName" "FileZilla Client ${VERSION}"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "DisplayIcon" "$INSTDIR\FileZilla.exe"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "DisplayVersion" "${VERSION}"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "URLInfoAbout" "${WEBSITE_URL}"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "URLUpdateInfo" "${WEBSITE_URL}"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "HelpLink" "${WEBSITE_URL}"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "Publisher" "${PUBLISHER}"
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "VersionMajor" "${VERSION_MAJOR}"
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "VersionMinor" "${VERSION_MINOR}"
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "NoModify" "1"
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "NoRepair" "1"
Call GetInstalledSize
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client" "EstimatedSize" "$GetInstalledSize.total" ; Create/Write the reg key with the dword value
SetOutPath "$INSTDIR\docs"
File "${top_srcdir}\docs\fzdefaults.xml.example"
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
;Create shortcuts
SetOutPath "$INSTDIR"
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\FileZilla.lnk" "$INSTDIR\filezilla.exe"
${If} ${AtLeastWin7}
; Setting AppID
push "FileZilla.Client.AppID"
push "$SMPROGRAMS\$STARTMENU_FOLDER\FileZilla.lnk"
nsis_appid::set_appid
${EndIf}
!insertmacro MUI_STARTMENU_WRITE_END
Push $R0
StrCpy $R0 "$STARTMENU_FOLDER" 1
${if} $R0 == ">"
;Write folder to registry
WriteRegStr "${MUI_STARTMENUPAGE_Application_REGISTRY_ROOT}" "${MUI_STARTMENUPAGE_Application_REGISTRY_KEY}" "${MUI_STARTMENUPAGE_Application_REGISTRY_VALUENAME}" ">"
${endif}
Pop $R0
SectionEnd
!macro INSTALLICONSET SET
SetOutPath "$INSTDIR\resources\${SET}"
File "${top_srcdir}/src\interface\resources\${SET}\theme.xml"
File /r "${top_srcdir}/src\interface\resources\${SET}\*.png"
!macroend
${MementoSection} "Icon sets" SecIconSets
!insertmacro INSTALLICONSET cyril
!insertmacro INSTALLICONSET blukis
!insertmacro INSTALLICONSET lone
!insertmacro INSTALLICONSET minimal
!insertmacro INSTALLICONSET opencrystal
${MementoSectionEnd}
!if "@FILEZILLA_LINGUAS@" != ""
!macro INSTALLLANGFILE LANG
SetOutPath "$INSTDIR\locales\${LANG}"
File /oname=filezilla.mo "..\locales\${LANG}.mo"
!macroend
${MementoSection} "Language files" SecLang
; installlangfiles.nsh is generated by configure and just contains a series of
; !insertmacro INSTALLLANGFILE <lang>
!include installlangfiles.nsh
${MementoSectionEnd}
!endif
${MementoSection} "Shell Extension" SecShellExt
SetOutPath "$INSTDIR"
!define LIBRARY_SHELL_EXTENSION
!define LIBRARY_COM
!define LIBRARY_IGNORE_VERSION
!insertmacro InstallLib REGDLL NOTSHARED REBOOT_PROTECTED ../src/fzshellext/.libs\libfzshellext-0.dll $INSTDIR\fzshellext.dll "$INSTDIR"
!define LIBRARY_X64
${If} ${RunningX64}
!insertmacro InstallLib REGDLL NOTSHARED REBOOT_PROTECTED "${top_srcdir}/src/fzshellext\fzshellext_64.dll" $INSTDIR\fzshellext_64.dll "$INSTDIR"
${Else}
!insertmacro InstallLib DLL NOTSHARED REBOOT_PROTECTED "${top_srcdir}/src/fzshellext\fzshellext_64.dll" $INSTDIR\fzshellext_64.dll "$INSTDIR"
${Endif}
!undef LIBRARY_X64
${MementoSectionEnd}
${MementoUnselectedSection} "Desktop Icon" SecDesktop
CreateShortCut "$DESKTOP\FileZilla Client.lnk" "$INSTDIR\filezilla.exe" "" "$INSTDIR\filezilla.exe" 0
${MementoSectionEnd}
${MementoSectionDone}
;--------------------------------
;Functions
Function PostInstPage
; Don't advance automatically if details expanded
FindWindow $R0 "#32770" "" $HWNDPARENT
GetDlgItem $R0 $R0 1016
System::Call user32::IsWindowVisible(i$R0)i.s
Pop $R0
StrCmp $R0 0 +2
SetAutoClose false
FunctionEnd
Function CustomFinishRun
UAC_unicode::Exec '' '"$INSTDIR/filezilla.exe"' '' ''
FunctionEnd
Function GetInstalledSize
Push $0
Push $1
StrCpy $GetInstalledSize.total 0
${ForEach} $1 0 256 + 1
${if} ${SectionIsSelected} $1
SectionGetSize $1 $0
IntOp $GetInstalledSize.total $GetInstalledSize.total + $0
${Endif}
${Next}
Pop $1
Pop $0
IntFmt $GetInstalledSize.total "0x%08X" $GetInstalledSize.total
Push $GetInstalledSize.total
FunctionEnd
;--------------------------------
;Descriptions
;Language strings
LangString DESC_SecMain ${LANG_ENGLISH} "Required program files."
LangString DESC_SecIconSets ${LANG_ENGLISH} "Additional icon sets."
!if "@FILEZILLA_LINGUAS@" != ""
LangString DESC_SecLang ${LANG_ENGLISH} "Language files."
!endif
LangString DESC_SecShellExt ${LANG_ENGLISH} "Shell extension for advanced drag && drop support. Required for drag && drop from FileZilla into Explorer."
LangString DESC_SecDesktop ${LANG_ENGLISH} "Create desktop icon for FileZilla"
;Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecMain} $(DESC_SecMain)
!insertmacro MUI_DESCRIPTION_TEXT ${SecIconSets} $(DESC_SecIconSets)
!if "@FILEZILLA_LINGUAS@" != ""
!insertmacro MUI_DESCRIPTION_TEXT ${SecLang} $(DESC_SecLang)