diff options
| author | Gavin Andresen <[email protected]> | 2012-03-26 12:18:24 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-03-26 12:18:24 -0400 |
| commit | 7b90edb5a6cada7176012d09d748847b5f966585 (patch) | |
| tree | dd5d732cd00d91ed0797731f368249e3b64c204b /share | |
| parent | Merge pull request #974 from sipa/walletupgrade (diff) | |
| download | discoin-7b90edb5a6cada7176012d09d748847b5f966585.tar.xz discoin-7b90edb5a6cada7176012d09d748847b5f966585.zip | |
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 eba3b66dc..bffef9c41 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
|