Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Doxygen homepage and more #43

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ PROJECT_NUMBER = @PACKAGE_VERSION@
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.

PROJECT_BRIEF = "P2P Digital Currency"
PROJECT_BRIEF = "P2P Blockchain, based on Bitcoin"

# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55
Expand Down
Binary file modified doc/bitcoin_logo_doxygen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/bsha3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ const std::function<std::string(const char*)> G_TRANSLATION_FUN = nullptr;
*
* \section intro_sec Introduction
*
* This is the developer documentation of the reference client for an experimental new digital currency called BSHA3,
* which enables instant payments to anyone, anywhere in the world. BSHA3 uses peer-to-peer technology to operate
* with no central authority: managing transactions and issuing money are carried out collectively by the network.
* This is the developer documentation of the reference client for an experimental new blockchain called BSHA3,
* which enables instant transactions to anyone, anywhere in the world. BSHA3 uses peer-to-peer technology to operate
* with no central authority: managing transactions and creating coins is carried out collectively by the network.
*
* The software is a community-driven open source project, released under the MIT license.
*
* See https://github.com/bitcoin/bitcoin and https://bitcoincore.org/ for further information about the project.
* See https://github.com/bsha3/bsha3 and https://bsha3.org/ for further information about the project.
*
* \section Navigation
* Use the buttons <code>Namespaces</code>, <code>Classes</code> or <code>Files</code> at the top of the page to start navigating the code.
Expand Down
6 changes: 3 additions & 3 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,10 @@ void SetupServerArgs()

std::string LicenseInfo()
{
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
const std::string URL_SOURCE_CODE = "<https://github.com/bsha3/bsha3>";
const std::string URL_WEBSITE = "<https://bsha3.org>";

return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2018, COPYRIGHT_YEAR) + " ") + "\n" +
"\n" +
strprintf(_("Please contribute if you find %s useful. "
"Visit %s for further information about the software."),
Expand Down