diff options
| author | Matt Corallo <[email protected]> | 2012-06-10 02:04:15 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-06-15 17:19:13 +0200 |
| commit | ad5f29b7437fbdf6b25c4a5823b3dea0ac68b3ff (patch) | |
| tree | e8d4c45447a5e2f70488b907541c81e88108930c /share/setup.nsi | |
| parent | Fix #956 the Boost 1.49 way. (diff) | |
| download | discoin-ad5f29b7437fbdf6b25c4a5823b3dea0ac68b3ff.tar.xz discoin-ad5f29b7437fbdf6b25c4a5823b3dea0ac68b3ff.zip | |
Revert "Disable bitcoin: URI handling on Windows for the 0.6 release"
This reverts commit 7b90edb5a6cada7176012d09d748847b5f966585.
Diffstat (limited to 'share/setup.nsi')
| -rw-r--r-- | share/setup.nsi | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index fbbad3769..c0bc880a5 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -98,12 +98,10 @@ 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
-
- # 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"'
+ 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
|