diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-03-26 12:31:06 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-03-26 12:31:06 -0700 |
commit | c289d95d6bb3105a67b96a697ddb9dd773cf1033 (patch) | |
tree | 508e2cfdb851ef7ac863acc3a53001951fe95ef8 /share | |
parent | 57de7cd603660b20b5f5c611f11f458d80be886f (diff) | |
parent | 7b90edb5a6cada7176012d09d748847b5f966585 (diff) |
Merge pull request #991 from gavinandresen/disableWinURI
Disable bitcoin: URI handling on Windows for the 0.6 release
Diffstat (limited to 'share')
-rw-r--r-- | share/setup.nsi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index eba3b66dc8..bffef9c413 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -94,10 +94,12 @@ Section -post SEC0001 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
- WriteRegStr HKCR "bitcoin" "URL Protocol" ""
- WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin"
- WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe
- WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "$$1"'
+
+ # bitcoin: URI handling disabled for 0.6.0
+ # WriteRegStr HKCR "bitcoin" "URL Protocol" ""
+ # WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin"
+ # WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe
+ # WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "$$1"'
SectionEnd
# Macro for selecting uninstaller sections
|