From 481878b92d5fed7a69d39b8a7e636afc41511e90 Mon Sep 17 00:00:00 2001 From: David Pinedo Date: Tue, 2 Feb 2016 16:10:39 -0700 Subject: windowrtinstaller: use new image files names in installer --- windowsRuntimeInstaller/InstallerRT.nsi | 16 ++++++++-------- windowsRuntimeInstaller/V.bmp | Bin 0 -> 27626 bytes windowsRuntimeInstaller/V.ico | Bin 0 -> 101492 bytes windowsRuntimeInstaller/Vulkan.bmp | Bin 27626 -> 0 bytes windowsRuntimeInstaller/Vulkan.ico | Bin 101492 -> 0 bytes 5 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 windowsRuntimeInstaller/V.bmp create mode 100644 windowsRuntimeInstaller/V.ico delete mode 100644 windowsRuntimeInstaller/Vulkan.bmp delete mode 100644 windowsRuntimeInstaller/Vulkan.ico diff --git a/windowsRuntimeInstaller/InstallerRT.nsi b/windowsRuntimeInstaller/InstallerRT.nsi index edea8b6a..b256bc13 100644 --- a/windowsRuntimeInstaller/InstallerRT.nsi +++ b/windowsRuntimeInstaller/InstallerRT.nsi @@ -52,7 +52,7 @@ !define errorMessage2 "Uninstalling any installed items and exiting.$\r$\n" # Set the icon -!define ICOFILE "Vulkan.ico" +!define ICOFILE "V.ico" Icon ${ICOFILE} UninstallIcon ${ICOFILE} WindowIcon off @@ -416,7 +416,7 @@ Section "uninstall" Delete /REBOOTOK "$INSTDIR\VULKANRT_LICENSE.rtf" Delete /REBOOTOK "$INSTDIR\LICENSE.txt" Delete /REBOOTOK "$INSTDIR\UninstallVulkanRT.exe" - Delete /REBOOTOK "$INSTDIR\Vulkan.ico" + Delete /REBOOTOK "$INSTDIR\V.ico" Delete /REBOOTOK "$INSTDIR\ConfigLayersAndVulkanDLL.ps1" Delete /REBOOTOK "$INSTDIR\vulkaninfo.exe" @@ -452,17 +452,17 @@ SectionEnd Function brandimage SetOutPath "$TEMP" - SetFileAttributes VulkanLogo.bmp temporary - File VulkanLogo.bmp - SetBrandingImage "$TEMP/VulkanLogo.bmp" + SetFileAttributes V.bmp temporary + File V.bmp + SetBrandingImage "$TEMP/V.bmp" Functionend Function un.brandimage SetOutPath "$TEMP" - SetFileAttributes VulkanLogo.bmp temporary - File VulkanLogo.bmp - SetBrandingImage "$TEMP/VulkanLogo.bmp" + SetFileAttributes V.bmp temporary + File V.bmp + SetBrandingImage "$TEMP/V.bmp" Functionend Function un.DeleteDirIfEmpty diff --git a/windowsRuntimeInstaller/V.bmp b/windowsRuntimeInstaller/V.bmp new file mode 100644 index 00000000..dea3353c Binary files /dev/null and b/windowsRuntimeInstaller/V.bmp differ diff --git a/windowsRuntimeInstaller/V.ico b/windowsRuntimeInstaller/V.ico new file mode 100644 index 00000000..61166983 Binary files /dev/null and b/windowsRuntimeInstaller/V.ico differ diff --git a/windowsRuntimeInstaller/Vulkan.bmp b/windowsRuntimeInstaller/Vulkan.bmp deleted file mode 100644 index dea3353c..00000000 Binary files a/windowsRuntimeInstaller/Vulkan.bmp and /dev/null differ diff --git a/windowsRuntimeInstaller/Vulkan.ico b/windowsRuntimeInstaller/Vulkan.ico deleted file mode 100644 index 61166983..00000000 Binary files a/windowsRuntimeInstaller/Vulkan.ico and /dev/null differ -- cgit v1.2.3