1
0
Эх сурвалжийг харах

CPack/WiX: Fix installer status text

Previously, installers displayed extra text on some Windows versions:

    File: [1], Directory: [9], Size [6]

Add an option to our WiX templates to suppress that.

Fixes: #25634
Brad King 1 жил өмнө
parent
commit
3ed275bbb6

+ 1 - 0
Modules/Internal/CPack/WIX.template.in

@@ -45,6 +45,7 @@
         <FeatureRef Id="ProductFeature"/>
 
         <UIRef Id="$(var.CPACK_WIX_UI_REF)" />
+        <UIRef Id="WixUI_ErrorProgressText" />
 
         <?include "properties.wxi"?>
         <?include "product_fragment.wxi"?>

+ 1 - 0
Utilities/Release/WiX/WIX.template.in

@@ -52,6 +52,7 @@
         </FeatureRef>
 
         <UIRef Id="$(var.CPACK_WIX_UI_REF)" />
+        <UIRef Id="WixUI_ErrorProgressText" />
 
         <?include "properties.wxi"?>
         <?include "product_fragment.wxi"?>