Skip to content

Commit f96ed5a

Browse files
committed
bitcoin -> dobbscoin renaming
1 parent df1e692 commit f96ed5a

File tree

349 files changed

+2444
-2444
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+2444
-2444
lines changed

.gitignore

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
*.tar.gz
22

33
*.exe
4-
src/bitcoin
5-
src/bitcoind
6-
src/bitcoin-cli
7-
src/bitcoin-tx
8-
src/test/test_bitcoin
9-
src/qt/test/test_bitcoin-qt
4+
src/dobbscoin
5+
src/dobbscoind
6+
src/dobbscoin-cli
7+
src/dobbscoin-tx
8+
src/test/test_dobbscoin
9+
src/qt/test/test_dobbscoin-qt
1010

1111
# autoreconf
1212
Makefile.in
@@ -29,8 +29,8 @@ config.log
2929
config.status
3030
configure
3131
libtool
32-
src/config/bitcoin-config.h
33-
src/config/bitcoin-config.h.in
32+
src/config/dobbscoin-config.h
33+
src/config/dobbscoin-config.h.in
3434
src/config/stamp-h1
3535
share/setup.nsi
3636
share/qt/Info.plist
@@ -55,7 +55,7 @@ src/qt/test/moc*.cpp
5555
*.o
5656
*.o-*
5757
*.patch
58-
.bitcoin
58+
.dobbscoin
5959
*.a
6060
*.pb.cc
6161
*.pb.h
@@ -74,12 +74,12 @@ src/qt/test/moc*.cpp
7474
# Compilation and Qt preprocessor part
7575
*.qm
7676
Makefile
77-
bitcoin-qt
77+
dobbscoin-qt
7878
Bitcoin-Qt.app
7979

8080
# Unit-tests
8181
Makefile.test
82-
bitcoin-qt_test
82+
dobbscoin-qt_test
8383
src/test/buildenv.py
8484

8585
# Resources cpp
@@ -95,15 +95,15 @@ build
9595
#lcov
9696
*.gcno
9797
/*.info
98-
test_bitcoin.coverage/
98+
test_dobbscoin.coverage/
9999
total.coverage/
100100
coverage_percent.txt
101101

102102
#build tests
103103
linux-coverage-build
104104
linux-build
105105
win32-build
106-
qa/pull-tester/run-bitcoind-for-test.sh
106+
qa/pull-tester/run-dobbscoind-for-test.sh
107107
qa/pull-tester/tests-config.sh
108108
qa/pull-tester/cache/*
109109
qa/pull-tester/test.*/*

.tx/config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[main]
22
host = https://www.transifex.com
33

4-
[bitcoin.qt-translation-010x]
5-
file_filter = src/qt/locale/bitcoin_<lang>.ts
6-
source_file = src/qt/locale/bitcoin_en.ts
4+
[dobbscoin.qt-translation-010x]
5+
file_filter = src/qt/locale/dobbscoin_<lang>.ts
6+
source_file = src/qt/locale/dobbscoin_en.ts
77
source_lang = en

INSTALL

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Building Bitcoin
22

3-
See doc/build-*.md for instructions on building bitcoind,
3+
See doc/build-*.md for instructions on building dobbscoind,
44
the intended-for-services, no-graphical-interface, reference
55
implementation of Bitcoin.

Makefile.am

+23-23
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ SUBDIRS = src
44

55
GZIP_ENV="-9n"
66

7-
BITCOIND_BIN=$(top_builddir)/src/bitcoind$(EXEEXT)
8-
BITCOIN_QT_BIN=$(top_builddir)/src/qt/bitcoin-qt$(EXEEXT)
9-
BITCOIN_CLI_BIN=$(top_builddir)/src/bitcoin-cli$(EXEEXT)
7+
BITCOIND_BIN=$(top_builddir)/src/dobbscoind$(EXEEXT)
8+
BITCOIN_QT_BIN=$(top_builddir)/src/qt/dobbscoin-qt$(EXEEXT)
9+
BITCOIN_CLI_BIN=$(top_builddir)/src/dobbscoin-cli$(EXEEXT)
1010
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT)
1111

1212
OSX_APP=Bitcoin-Qt.app
1313
OSX_DMG=Bitcoin-Qt.dmg
1414
OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus
1515
OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist
16-
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns
16+
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/dobbscoin.icns
1717
OSX_PLIST=$(top_srcdir)/share/qt/Info.plist #not installed
1818
OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW
1919

2020
DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md)
2121

22-
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \
22+
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/dobbscoin.ico \
2323
$(top_srcdir)/share/pixmaps/nsis-header.bmp \
2424
$(top_srcdir)/share/pixmaps/nsis-wizard.bmp \
2525
$(top_srcdir)/doc/README_windows.txt
@@ -31,9 +31,9 @@ OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \
3131
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh
3232

3333
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \
34-
leveldb_baseline.info test_bitcoin_filtered.info total_coverage.info \
34+
leveldb_baseline.info test_dobbscoin_filtered.info total_coverage.info \
3535
baseline_filtered.info block_test_filtered.info \
36-
leveldb_baseline_filtered.info test_bitcoin_coverage.info test_bitcoin.info
36+
leveldb_baseline_filtered.info test_dobbscoin_coverage.info test_dobbscoin.info
3737

3838
dist-hook:
3939
-$(MAKE) -C $(top_distdir)/src/leveldb clean
@@ -71,7 +71,7 @@ $(OSX_APP)/Contents/Info.plist: $(OSX_PLIST)
7171
$(MKDIR_P) $(@D)
7272
$(INSTALL_DATA) $< $@
7373

74-
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS)
74+
$(OSX_APP)/Contents/Resources/dobbscoin.icns: $(OSX_INSTALLER_ICONS)
7575
$(MKDIR_P) $(@D)
7676
$(INSTALL_DATA) $< $@
7777

@@ -80,7 +80,7 @@ $(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN)
8080
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@
8181

8282
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \
83-
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \
83+
$(OSX_APP)/Contents/Resources/dobbscoin.icns $(OSX_APP)/Contents/Info.plist \
8484
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt
8585

8686
if BUILD_DARWIN
@@ -147,54 +147,54 @@ leveldb_baseline_filtered.info: leveldb_baseline.info
147147
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info
148148
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@
149149

150-
test_bitcoin.info: baseline_filtered_combined.info
150+
test_dobbscoin.info: baseline_filtered_combined.info
151151
$(MAKE) -C src/ check
152-
$(LCOV) -c -d $(abs_builddir)/src -t test_bitcoin -o $@
152+
$(LCOV) -c -d $(abs_builddir)/src -t test_dobbscoin -o $@
153153
$(LCOV) -z -d $(abs_builddir)/src
154154
$(LCOV) -z -d $(abs_builddir)/src/leveldb
155155

156-
test_bitcoin_filtered.info: test_bitcoin.info
156+
test_dobbscoin_filtered.info: test_dobbscoin.info
157157
$(LCOV) -r $< "/usr/include/*" -o $@
158158

159-
block_test.info: test_bitcoin_filtered.info
159+
block_test.info: test_dobbscoin_filtered.info
160160
$(MKDIR_P) qa/tmp
161-
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0
161+
-@TIMEOUT=15 qa/pull-tester/run-dobbscoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0
162162
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@
163163
$(LCOV) -z -d $(abs_builddir)/src
164164
$(LCOV) -z -d $(abs_builddir)/src/leveldb
165165

166166
block_test_filtered.info: block_test.info
167167
$(LCOV) -r $< "/usr/include/*" -o $@
168168

169-
test_bitcoin_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info
170-
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -o $@
169+
test_dobbscoin_coverage.info: baseline_filtered_combined.info test_dobbscoin_filtered.info
170+
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_dobbscoin_filtered.info -o $@
171171

172-
total_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info block_test_filtered.info
173-
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt
172+
total_coverage.info: baseline_filtered_combined.info test_dobbscoin_filtered.info block_test_filtered.info
173+
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_dobbscoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt
174174

175-
test_bitcoin.coverage/.dirstamp: test_bitcoin_coverage.info
175+
test_dobbscoin.coverage/.dirstamp: test_dobbscoin_coverage.info
176176
$(GENHTML) -s $< -o $(@D)
177177
@touch $@
178178

179179
total.coverage/.dirstamp: total_coverage.info
180180
$(GENHTML) -s $< -o $(@D)
181181
@touch $@
182182

183-
cov: test_bitcoin.coverage/.dirstamp total.coverage/.dirstamp
183+
cov: test_dobbscoin.coverage/.dirstamp total.coverage/.dirstamp
184184

185185
endif
186186

187187
if USE_COMPARISON_TOOL
188188
check-local:
189189
$(MKDIR_P) qa/tmp
190-
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1
190+
@qa/pull-tester/run-dobbscoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1
191191
endif
192192

193-
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-bitcoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING)
193+
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-dobbscoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING)
194194

195195
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER)
196196

197197
.INTERMEDIATE: $(COVERAGE_INFO)
198198

199199
clean-local:
200-
rm -rf test_bitcoin.coverage/ total.coverage/ $(OSX_APP)
200+
rm -rf test_dobbscoin.coverage/ total.coverage/ $(OSX_APP)

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Bitcoin Core integration/staging tree
22
=====================================
33

4-
[![Build Status](https://travis-ci.org/bitcoin/bitcoin.svg?branch=master)](https://travis-ci.org/bitcoin/bitcoin)
4+
[![Build Status](https://travis-ci.org/dobbscoin/dobbscoin.svg?branch=master)](https://travis-ci.org/dobbscoin/dobbscoin)
55

6-
https://www.bitcoin.org
6+
https://www.dobbscoin.org
77

88
What is Bitcoin?
99
----------------
@@ -15,7 +15,7 @@ out collectively by the network. Bitcoin Core is the name of open source
1515
software which enables the use of this currency.
1616

1717
For more information, as well as an immediately useable, binary version of
18-
the Bitcoin Core software, see https://www.bitcoin.org/en/download.
18+
the Bitcoin Core software, see https://www.dobbscoin.org/en/download.
1919

2020
License
2121
-------
@@ -34,15 +34,15 @@ development team members simply pulls it.
3434

3535
If it is a *more complicated or potentially controversial* change, then the patch
3636
submitter will be asked to start a discussion (if they haven't already) on the
37-
[mailing list](http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development).
37+
[mailing list](http://sourceforge.net/mailarchive/forum.php?forum_name=dobbscoin-development).
3838

3939
The patch will be accepted if there is broad consensus that it is a good thing.
4040
Developers should expect to rework and resubmit patches if the code doesn't
4141
match the project's coding conventions (see [doc/coding.md](doc/coding.md)) or are
4242
controversial.
4343

4444
The `master` branch is regularly built and tested, but is not guaranteed to be
45-
completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created
45+
completely stable. [Tags](https://github.com/dobbscoin/dobbscoin/tags) are created
4646
regularly to indicate new official, stable release versions of Bitcoin.
4747

4848
Testing
@@ -68,21 +68,21 @@ for the build/test scripts.
6868

6969
Large changes should have a test plan, and should be tested by somebody other
7070
than the developer who wrote the code.
71-
See https://github.com/bitcoin/QA/ for how to create a test plan.
71+
See https://github.com/dobbscoin/QA/ for how to create a test plan.
7272

7373
Translations
7474
------------
7575

7676
Changes to translations as well as new translations can be submitted to
77-
[Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/).
77+
[Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/dobbscoin/).
7878

7979
Translations are periodically pulled from Transifex and merged into the git repository. See the
8080
[translation process](doc/translation_process.md) for details on how this works.
8181

8282
**Important**: We do not accept translation changes as GitHub pull requests because the next
8383
pull from Transifex would automatically overwrite them again.
8484

85-
Translators should also subscribe to the [mailing list](https://groups.google.com/forum/#!forum/bitcoin-translators).
85+
Translators should also subscribe to the [mailing list](https://groups.google.com/forum/#!forum/dobbscoin-translators).
8686

8787
Development tips and tricks
8888
---------------------------
@@ -105,7 +105,7 @@ to see it.
105105

106106
**testnet and regtest modes**
107107

108-
Run with the -testnet option to run with "play bitcoins" on the test network, if you
108+
Run with the -testnet option to run with "play dobbscoins" on the test network, if you
109109
are testing multi-machine code that needs to operate across the internet.
110110

111111
If you are testing something that can run on one machine, run with the -regtest option.

0 commit comments

Comments
 (0)