|
11 | 11 | <Property Id="WixUI_Mode" Value="InstallDir" />
|
12 | 12 | <Property Id="ARPNOMODIFY" Value="1" />
|
13 | 13 | <Property Id="ARPNOREPAIR" Value="1" />
|
14 |
| - |
| 14 | + |
15 | 15 | <DialogRef Id="BrowseDlg" />
|
16 | 16 | <DialogRef Id="DiskCostDlg" />
|
17 | 17 | <DialogRef Id="ErrorDlg" />
|
|
22 | 22 | <DialogRef Id="ProgressDlg" />
|
23 | 23 | <DialogRef Id="ResumeDlg" />
|
24 | 24 | <DialogRef Id="UserExit" />
|
| 25 | + <DialogRef Id="FeaturesDlg" /> |
25 | 26 |
|
26 | 27 | <!-- Make sure to include custom dialogs in the installer database via a DialogRef command,
|
27 | 28 | especially if they are not included explicitly in the publish chain below -->
|
|
57 | 58 | <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
|
58 | 59 | <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2">NOT WIXUI_DONTVALIDATEPATH</Publish>
|
59 | 60 | <Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3"><![CDATA[NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
|
60 |
| - <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="4">WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1"</Publish> |
| 61 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="FeaturesDlg" Order="4">WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1"</Publish> |
61 | 62 |
|
62 | 63 | <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
|
63 | 64 | <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish>
|
64 | 65 |
|
| 66 | + <Publish Dialog="FeaturesDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">Installed</Publish> |
| 67 | + <Publish Dialog="FeaturesDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg">NOT Installed</Publish> |
| 68 | + |
65 | 69 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg">NOT Installed</Publish>
|
66 | 70 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg">Installed</Publish>
|
67 | 71 |
|
|
75 | 79 | <UIRef Id="WixUI_Common" />
|
76 | 80 |
|
77 | 81 | <CustomAction Id="CA_Set_WIXUI_EXITDIALOGOPTIONALTEXT" Property="WIXUI_EXITDIALOGOPTIONALTEXT" Value="To finish installation of [ProductName] please restart your computer."/>
|
78 |
| - <CustomAction Id="CA_Set_WIXUI_EXITDIALOGOPTIONALTEXT_NOREBOOT" Property="WIXUI_EXITDIALOGOPTIONALTEXT" Value="Suceesfully installed [ProductName]. You can now start [ProductName] from the Start menu."/> |
| 82 | + <CustomAction Id="CA_Set_WIXUI_EXITDIALOGOPTIONALTEXT_NOREBOOT" Property="WIXUI_EXITDIALOGOPTIONALTEXT" Value="Suceesfully installed [ProductName]."/> |
79 | 83 | <InstallUISequence>
|
80 | 84 | <Custom Action="CA_Set_WIXUI_EXITDIALOGOPTIONALTEXT" After="FindRelatedProducts"><![CDATA[NOT WIX_UPGRADE_DETECTED]]></Custom>
|
81 | 85 | <Custom Action="CA_Set_WIXUI_EXITDIALOGOPTIONALTEXT_NOREBOOT" After="FindRelatedProducts"><![CDATA[WIX_UPGRADE_DETECTED]]></Custom>
|
|
0 commit comments