Skip to content

Commit

Permalink
Replace Dark with Spread in several places
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Spread committed Sep 13, 2014
1 parent 0935f02 commit 057007c
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 19 deletions.
3 changes: 1 addition & 2 deletions COPYING
@@ -1,5 +1,4 @@
Copyright (c) 2009-2013 Bitcoin Developers
Copyright (c) 2011-2013 DarkCoin Developers
Copyright (c) 2009-2014 The Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions INSTALL
@@ -1,9 +1,9 @@
Building DarkCoin
Building SpreadCoin

See doc/readme-qt.rst for instructions on building DarkCoin-Qt,
See doc/readme-qt.rst for instructions on building SpreadCoin-Qt,
the intended-for-end-users, nice-graphical-interface, reference
implementation of DarkCoin.
implementation of SpreadCoin.

See doc/build-*.txt for instructions on building darkcoind,
See doc/build-*.txt for instructions on building spreadcoind,
the intended-for-services, no-graphical-interface, reference
implementation of DarkCoin.
implementation of SpreadCoin.
4 changes: 2 additions & 2 deletions contrib/bitrpc/bitrpc.py
Expand Up @@ -24,7 +24,7 @@

elif cmd == "getaccount":
try:
addr = raw_input("Enter a DarkCoin address: ")
addr = raw_input("Enter a SpreadCoin address: ")
print access.getaccount(addr)
except:
print "\n---An error occurred---\n"
Expand Down Expand Up @@ -126,7 +126,7 @@

elif cmd == "getreceivedbyaddress":
try:
addr = raw_input("Enter a DarkCoin address (optional): ")
addr = raw_input("Enter a SpreadCoin address (optional): ")
mc = raw_input("Minimum confirmations (optional): ")
try:
print access.getreceivedbyaddress(addr, mc)
Expand Down
2 changes: 1 addition & 1 deletion contrib/macdeploy/fancy.plist
Expand Up @@ -22,7 +22,7 @@
<integer>370</integer>
<integer>156</integer>
</array>
<key>DarkCoin-Qt.app</key>
<key>SpreadCoin-Qt.app</key>
<array>
<integer>128</integer>
<integer>156</integer>
Expand Down
2 changes: 1 addition & 1 deletion contrib/macdeploy/macdeployqtplus
Expand Up @@ -774,7 +774,7 @@ if config.dmg is not None:
items_positions.append(itemscript.substitute(params))

params = {
"disk" : "DarkCoin-Qt",
"disk" : "SpreadCoin-Qt",
"window_bounds" : "300,300,800,620",
"icon_size" : "96",
"background_commands" : "",
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Expand Up @@ -28,7 +28,7 @@ DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.

PROJECT_NAME = DarkCoin
PROJECT_NAME = SpreadCoin

# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
Expand Down
2 changes: 1 addition & 1 deletion doc/release-process.md
Expand Up @@ -5,7 +5,7 @@ Release Process

###update (commit) version in sources

darkcoin-qt.pro
bitcoin-qt.pro
contrib/verifysfbinaries/verify.sh
doc/README*
share/setup.nsi
Expand Down
10 changes: 5 additions & 5 deletions share/qt/Info.plist
Expand Up @@ -7,27 +7,27 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>$VERSION, Copyright © 2014 The Darkcoin developers</string>
<string>$VERSION, Copyright © 2014 The Developers</string>
<key>CFBundleShortVersionString</key>
<string>$VERSION</string>
<key>CFBundleVersion</key>
<string>$VERSION</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleExecutable</key>
<string>DarkCoin-Qt</string>
<string>SpreadCoin-Qt</string>
<key>CFBundleIdentifier</key>
<string>org.darkcoin.DarkCoin-Qt</string>
<string>org.spreadcoin.SpreadCoin-Qt</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>org.darkcoin.DarkCoinPayment</string>
<string>org.spreadcoin.SpreadCoinPayment</string>
<key>CFBundleURLSchemes</key>
<array>
<string>darkcoin</string>
<string>spreadcoin</string>
</array>
</dict>
</array>
Expand Down
2 changes: 1 addition & 1 deletion share/qt/clean_mac_info_plist.py
Expand Up @@ -9,7 +9,7 @@
bitcoinDir = "./";

inFile = bitcoinDir+"/share/qt/Info.plist"
outFile = "DarkCoin-Qt.app/Contents/Info.plist"
outFile = "SpreadCoin-Qt.app/Contents/Info.plist"
version = "unknown";

fileForGrabbingVersion = bitcoinDir+"bitcoin-qt.pro"
Expand Down

0 comments on commit 057007c

Please sign in to comment.