Skip to content

Commit c86ed0f

Browse files
author
Smart Cloud Solutions Inc.
committed
Updated installer splash icon
1 parent 813c3bb commit c86ed0f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

WixUI_Bmp_Dialog.bmp

451 KB
Binary file not shown.

WixUI_Bmp_Dialog.png

-96.1 KB
Binary file not shown.

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ jlink {
110110
// Windows-specific: Add resource-dir for WixUI splash screen
111111
// Must use installerOptions, not resourceDir property (not supported by plugin)
112112
if (os.isWindows) {
113-
val wixDialogBmp = file("WixUI_Bmp_Dialog.png")
113+
val wixDialogBmp = file("WixUI_Bmp_Dialog.bmp")
114114
if (wixDialogBmp.exists() && wixDialogBmp.length() > 0) {
115115
installerOptions.addAll(listOf("--resource-dir", projectDir.absolutePath))
116-
logger.lifecycle("Windows installer splash screen: WixUI_Bmp_Dialog.png in ${projectDir.absolutePath}")
116+
logger.lifecycle("Windows installer splash screen: WixUI_Bmp_Dialog.bmp in ${projectDir.absolutePath}")
117117
} else {
118-
logger.lifecycle("No custom splash screen (WixUI_Bmp_Dialog.png not found)")
118+
logger.lifecycle("No custom splash screen (WixUI_Bmp_Dialog.bmp not found)")
119119
}
120120
}
121121

0 commit comments

Comments
 (0)