mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
c3c952bd26
- **Benchmark tool:** - (Add) Reference machine Intel® Core™ i9-13900K @ 5.5 GHz - (Improvement) Layout and arrangement - **Windows MSI:** - (Improvement) Move registry keys from HKCU to HKLM - (Improvement) Sign MSI package - (Upgrade) Windows MSI: Wix 3 to 4 - (Fix) SL1: Change `SupportPillarWideningFactor` from ushort to float - (Fix) PCB exposure: Implement G02 and G03 arcs (#692) - (Upgrade) .NET from 6.0.15 to 6.0.16 - (Upgrade) openCV from 4.6.0 to 4.7.0
16 lines
613 B
XML
16 lines
613 B
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
|
|
<Fragment>
|
|
<UI Id="UI">
|
|
|
|
<!-- See http://wix.sourceforge.net/manual-wix3/WixUI_index.htm for more information-->
|
|
<!--<UIRef Id="UI_CustomFeatureTree"/>!-->
|
|
<ui:WixUI Id="UI_CustomInstallDir" />
|
|
|
|
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchApplication" Condition="WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed" />
|
|
|
|
<!--Uncomment to inject a custom dialog into the install wizard loop -->
|
|
<!--<UIRef Id="CustomDlg"/>-->
|
|
|
|
</UI>
|
|
</Fragment>
|
|
</Wix> |