-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris
committed
Jan 27, 2018
1 parent
96b1622
commit be6c1c4
Showing
66 changed files
with
1,524 additions
and
1,524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ pre-start script | |
echo "It is also recommended that you also set alertnotify so you are " | ||
echo "notified of problems:" | ||
echo | ||
echo "ie: alertnotify=echo %%s | mail -s \"Diamond Alert\"" \ | ||
echo "ie: alertnotify=echo %%s | mail -s \"Bitcloud Alert\"" \ | ||
"[email protected]" | ||
echo | ||
exit 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ checkconfig() | |
eerror "It is also recommended that you also set alertnotify so you are " | ||
eerror "notified of problems:" | ||
eerror "" | ||
eerror "ie: alertnotify=echo %%s | mail -s \"Diamond Alert\"" \ | ||
eerror "ie: alertnotify=echo %%s | mail -s \"Bitcloud Alert\"" \ | ||
"[email protected]" | ||
eerror "" | ||
return 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ SetCompressor /SOLID lzma | |
# General Symbol Definitions | ||
!define REGKEY "SOFTWARE\$(^Name)" | ||
!define VERSION @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ | ||
!define COMPANY "Diamond Core project" | ||
!define COMPANY "Bitcloud Core project" | ||
!define URL http://bit.bitclouds/ | ||
|
||
# MUI Symbol Definitions | ||
|
@@ -50,16 +50,16 @@ Var StartMenuGroup | |
# Installer attributes | ||
OutFile @abs_top_srcdir@/bitcloud-${VERSION}-win@[email protected] | ||
!if "@WINDOWS_BITS@" == "64" | ||
InstallDir $PROGRAMFILES64\Diamond | ||
InstallDir $PROGRAMFILES64\Bitcloud | ||
!else | ||
InstallDir $PROGRAMFILES\Diamond | ||
InstallDir $PROGRAMFILES\Bitcloud | ||
!endif | ||
CRCCheck on | ||
XPStyle on | ||
BrandingText " " | ||
ShowInstDetails show | ||
VIProductVersion ${VERSION}.@CLIENT_VERSION_BUILD@ | ||
VIAddVersionKey ProductName "Diamond Core" | ||
VIAddVersionKey ProductName "Bitcloud Core" | ||
VIAddVersionKey ProductVersion "${VERSION}" | ||
VIAddVersionKey CompanyName "${COMPANY}" | ||
VIAddVersionKey CompanyWebsite "${URL}" | ||
|
@@ -107,7 +107,7 @@ Section -post SEC0001 | |
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoModify 1 | ||
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1 | ||
WriteRegStr HKCR "bitcloud" "URL Protocol" "" | ||
WriteRegStr HKCR "bitcloud" "" "URL:Diamond" | ||
WriteRegStr HKCR "bitcloud" "" "URL:Bitcloud" | ||
WriteRegStr HKCR "bitcloud\DefaultIcon" "" $INSTDIR\bitcloud-qt.exe | ||
WriteRegStr HKCR "bitcloud\shell\open\command" "" '"$INSTDIR\bitcloud-qt.exe" "%1"' | ||
SectionEnd | ||
|
@@ -139,7 +139,7 @@ Section -un.post UNSEC0001 | |
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" | ||
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall $(^Name).lnk" | ||
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" | ||
Delete /REBOOTOK "$SMSTARTUP\Diamond.lnk" | ||
Delete /REBOOTOK "$SMSTARTUP\Bitcloud.lnk" | ||
Delete /REBOOTOK $INSTDIR\uninstall.exe | ||
Delete /REBOOTOK $INSTDIR\debug.log | ||
Delete /REBOOTOK $INSTDIR\db.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.