aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2019-08-31 08:29:50 +0800
committerfanquake <fanquake@gmail.com>2019-08-31 08:43:16 +0800
commitde048a59ad11af907bf540b402d330817027d6af (patch)
tree16d8a011f6b2ed1abff06a98cf76bac104ab66a7
parentf5db3f2128f0b293432a5a36cb0314b501019a06 (diff)
parent635e9154da223ca760713d7b3b66c0a9321d1277 (diff)
downloadbitcoin-de048a59ad11af907bf540b402d330817027d6af.tar.xz
Merge #16760: qt: Change uninstall icon on Windows
635e9154da223ca760713d7b3b66c0a9321d1277 [qt] Change uninstall icon on Windows (GChuf) Pull request description: Change uninstall icon in Windows by changing a registry value. Original uninstall.exe icon remains the same Reason: almost no other modern program uses that uninstall icon in Windows. before: ![before](https://user-images.githubusercontent.com/42591821/63967490-13a09000-ca8d-11e9-8f49-3884d33302ce.png) after: ![after](https://user-images.githubusercontent.com/42591821/63967491-13a09000-ca8d-11e9-82f0-5adb74246a1e.png) ACKs for top commit: promag: ACK 635e9154da223ca760713d7b3b66c0a9321d1277. l2a5b1: ACK 635e915 practicalswift: ACK 635e9154da223ca760713d7b3b66c0a9321d1277 jonasschnelli: utACK 635e9154da223ca760713d7b3b66c0a9321d1277 fanquake: ACK 635e9154da223ca760713d7b3b66c0a9321d1277 - Tested building and installing using WSL on Windows 10. Tree-SHA512: a0f435c79e726896cc93db058f1712dcf37daefbcacbf213b340ef2d5f4ff387148b8d659302f3e84be8a9f3df23e72b0ca5937f5d77499b808081bd40bfbbac
-rw-r--r--share/setup.nsi.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/setup.nsi.in b/share/setup.nsi.in
index acf9e86667..e9aa1f2b73 100644
--- a/share/setup.nsi.in
+++ b/share/setup.nsi.in
@@ -101,7 +101,7 @@ Section -post SEC0001
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayVersion "@PACKAGE_VERSION@"
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" Publisher "${COMPANY}"
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" URLInfoAbout "${URL}"
- WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayIcon $INSTDIR\uninstall.exe
+ WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayIcon $INSTDIR\bitcoin-qt.exe
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" UninstallString $INSTDIR\uninstall.exe
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoModify 1
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1