fix windows installer after jdk update
This commit is contained in:
parent
c777133d36
commit
733f8951e4
@ -284,7 +284,7 @@ task packageInstallers {
|
|||||||
" --win-shortcut"
|
" --win-shortcut"
|
||||||
)
|
)
|
||||||
|
|
||||||
executeCmd(jPackageFilePath + commonOpts + windowsOpts + " --win-console --type exe")
|
executeCmd(jPackageFilePath + commonOpts + windowsOpts + " --verbose > desktop/build/output.txt --type exe")
|
||||||
} else if (Os.isFamily(Os.FAMILY_MAC)) {
|
} else if (Os.isFamily(Os.FAMILY_MAC)) {
|
||||||
// See https://docs.oracle.com/en/java/javase/14/jpackage/override-jpackage-resources.html
|
// See https://docs.oracle.com/en/java/javase/14/jpackage/override-jpackage-resources.html
|
||||||
// for details of "--resource-dir"
|
// for details of "--resource-dir"
|
||||||
|
@ -92,6 +92,23 @@
|
|||||||
<WixVariable Id="WixUIDialogBmp" Value="$(var.ImageDir)/WixUIDialogBmp.bmp" />
|
<WixVariable Id="WixUIDialogBmp" Value="$(var.ImageDir)/WixUIDialogBmp.bmp" />
|
||||||
|
|
||||||
<UI>
|
<UI>
|
||||||
|
<!-- Run WixUI_InstallDir dialog in the default install directory. -->
|
||||||
|
<UIRef Id="WixUI_InstallDir" />
|
||||||
|
|
||||||
|
<?ifndef JpLicenseRtf ?>
|
||||||
|
<!--
|
||||||
|
No license file provided.
|
||||||
|
Override the dialog sequence in built-in dialog set "WixUI_InstallDir"
|
||||||
|
to exclude license dialog.
|
||||||
|
-->
|
||||||
|
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" Order="2">1</Publish>
|
||||||
|
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">1</Publish>
|
||||||
|
<?endif?>
|
||||||
|
|
||||||
|
<?ifdef JpLicenseRtf ?>
|
||||||
|
<UIRef Id="WixUI_Minimal" />
|
||||||
|
<?endif?>
|
||||||
|
|
||||||
<?ifdef JpInstallDirChooser ?>
|
<?ifdef JpInstallDirChooser ?>
|
||||||
<Dialog Id="JpInvalidInstallDir" Width="300" Height="85" Title="[ProductName] Setup" NoMinimize="yes">
|
<Dialog Id="JpInvalidInstallDir" Width="300" Height="85" Title="[ProductName] Setup" NoMinimize="yes">
|
||||||
<Control Id="JpInvalidInstallDirYes" Type="PushButton" X="100" Y="55" Width="50" Height="15" Default="no" Cancel="no" Text="Yes">
|
<Control Id="JpInvalidInstallDirYes" Type="PushButton" X="100" Y="55" Width="50" Height="15" Default="no" Cancel="no" Text="Yes">
|
||||||
@ -105,32 +122,10 @@
|
|||||||
</Control>
|
</Control>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
|
||||||
<!--
|
|
||||||
Run WixUI_InstallDir dialog in the default install directory.
|
|
||||||
-->
|
|
||||||
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"/>
|
|
||||||
<UIRef Id="WixUI_InstallDir" />
|
|
||||||
|
|
||||||
<Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="JpCheckInstallDir" Order="3">1</Publish>
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="JpCheckInstallDir" Order="3">1</Publish>
|
||||||
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="JpInvalidInstallDir" Order="5">INSTALLDIR_VALID="0"</Publish>
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="JpInvalidInstallDir" Order="5">INSTALLDIR_VALID="0"</Publish>
|
||||||
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="5">INSTALLDIR_VALID="1"</Publish>
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="5">INSTALLDIR_VALID="1"</Publish>
|
||||||
|
|
||||||
<?ifndef JpLicenseRtf ?>
|
|
||||||
<!--
|
|
||||||
No license file provided.
|
|
||||||
Override the dialog sequence in built-in dialog set "WixUI_InstallDir"
|
|
||||||
to exclude license dialog.
|
|
||||||
-->
|
|
||||||
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" Order="2">1</Publish>
|
|
||||||
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">1</Publish>
|
|
||||||
<?endif?>
|
|
||||||
|
|
||||||
<?else?>
|
|
||||||
|
|
||||||
<?ifdef JpLicenseRtf ?>
|
|
||||||
<UIRef Id="WixUI_Minimal" />
|
|
||||||
<?endif?>
|
|
||||||
|
|
||||||
<?endif?>
|
<?endif?>
|
||||||
<!-- Add launch app configuration -->
|
<!-- Add launch app configuration -->
|
||||||
<Publish Dialog="ExitDialog"
|
<Publish Dialog="ExitDialog"
|
||||||
@ -139,6 +134,7 @@
|
|||||||
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
|
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
|
||||||
</UI>
|
</UI>
|
||||||
|
|
||||||
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"/>
|
||||||
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch $(var.JpAppName)" />
|
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch $(var.JpAppName)" />
|
||||||
<Property Id="WixShellExecTarget" Value="[INSTALLDIR]/$(var.JpAppName).exe" />
|
<Property Id="WixShellExecTarget" Value="[INSTALLDIR]/$(var.JpAppName).exe" />
|
||||||
<CustomAction Id="LaunchApplication"
|
<CustomAction Id="LaunchApplication"
|
||||||
|
Loading…
Reference in New Issue
Block a user