From 3906cace6794218cf5ae87590defd390e3aa9feb Mon Sep 17 00:00:00 2001 From: Labyrinth Core Date: Tue, 15 Nov 2022 19:52:19 +0000 Subject: [PATCH] Update links --- README.md | 2 +- build_msvc/labyrinth_config.h | 2 +- configure.ac | 2 +- depends/Makefile | 2 +- doc/README.md | 4 ++-- doc/README_doxygen.md | 2 +- doc/developer-notes.md | 28 ++++++++++++++-------------- doc/man/labyrinth-cli.1 | 2 +- doc/man/labyrinth-qt.1 | 2 +- doc/man/labyrinth-tx.1 | 2 +- doc/man/labyrinth-wallet.1 | 2 +- doc/man/labyrinthd.1 | 2 +- src/chainparams.cpp | 8 ++++---- src/secp256k1/SECURITY.md | 2 +- src/test/netbase_tests.cpp | 8 ++++---- test/get_previous_releases.py | 2 +- 16 files changed, 36 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index d17086e..d32b97f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Labyrinth Core integration/staging tree ===================================== -https://labyrinthcore.org +https://labyrinthcore.com What is Labyrinth? ---------------- diff --git a/build_msvc/labyrinth_config.h b/build_msvc/labyrinth_config.h index b50639d..7a2a1ca 100644 --- a/build_msvc/labyrinth_config.h +++ b/build_msvc/labyrinth_config.h @@ -260,7 +260,7 @@ #define PACKAGE_TARNAME "labyrinth" /* Define to the home page for this package. */ -#define PACKAGE_URL "https://labyrinthcore.org/" +#define PACKAGE_URL "https://labyrinthcore.com/" /* Define to the version of this package. */ #define PACKAGE_VERSION "0.21.1" diff --git a/configure.ac b/configure.ac index bab1587..65d9fb5 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2022) define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Labyrinth Core]]) -AC_INIT([Labyrinth Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_REVISION, m4_if(_CLIENT_VERSION_BUILD, [0], [], _CLIENT_VERSION_BUILD))m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/labyrinth/labyrinth/issues],[labyrinth],[https://labyrinthcore.org/]) +AC_INIT([Labyrinth Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_REVISION, m4_if(_CLIENT_VERSION_BUILD, [0], [], _CLIENT_VERSION_BUILD))m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/labyrinth/labyrinth/issues],[labyrinth],[https://labyrinthcore.com/]) AC_CONFIG_SRCDIR([src/validation.cpp]) AC_CONFIG_HEADERS([src/config/labyrinth-config.h]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/depends/Makefile b/depends/Makefile index a8f73b4..dfa5128 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -38,7 +38,7 @@ NO_WALLET ?= NO_ZMQ ?= NO_UPNP ?= MULTIPROCESS ?= -FALLBACK_DOWNLOAD_PATH ?= https://labyrinthcore.org/depends-sources +FALLBACK_DOWNLOAD_PATH ?= https://labyrinthcore.com/depends-sources BUILD = $(shell ./config.guess) HOST ?= $(BUILD) diff --git a/doc/README.md b/doc/README.md index 57eec6d..7c81219 100644 --- a/doc/README.md +++ b/doc/README.md @@ -5,7 +5,7 @@ Setup --------------------- Labyrinth Core is the original Labyrinth client and it builds the backbone of the network. It downloads and, by default, stores the entire history of Labyrinth transactions, which requires a few hundred gigabytes of disk space. Depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. -To download Labyrinth Core, visit [labyrinthcore.org](https://labyrinthcore.org/en/download/). +To download Labyrinth Core, visit [labyrinthcore.com](https://labyrinthcore.com/en/download/). Running --------------------- @@ -53,7 +53,7 @@ The Labyrinth repo's [root README](/README.md) contains relevant information on - [Productivity Notes](productivity.md) - [Release Notes](release-notes.md) - [Release Process](release-process.md) -- [Source Code Documentation (External Link)](https://doxygen.labyrinthcore.org/) +- [Source Code Documentation (External Link)](https://doxygen.labyrinthcore.com/) - [Translation Process](translation_process.md) - [Translation Strings Policy](translation_strings_policy.md) - [JSON-RPC Interface](JSON-RPC-interface.md) diff --git a/doc/README_doxygen.md b/doc/README_doxygen.md index b09d968..cf0b488 100644 --- a/doc/README_doxygen.md +++ b/doc/README_doxygen.md @@ -8,7 +8,7 @@ with no central authority: managing transactions and issuing money are carried o The software is a community-driven open source project, released under the MIT license. -See https://github.com/labyrinth/labyrinth and https://labyrinthcore.org/ for further information about the project. +See https://github.com/labyrinth/labyrinth and https://labyrinthcore.com/ for further information about the project. \section Navigation Use Modules, Namespaces, Classes, or Files at the top of the page to start navigating the code. diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 029e3c4..ced7d4a 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -423,51 +423,51 @@ and its `cs_KeyStore` lock for example). Threads ------- -- [Main thread (`labyrinthd`)](https://doxygen.labyrinthcore.org/labyrinthd_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97) +- [Main thread (`labyrinthd`)](https://doxygen.labyrinthcore.com/labyrinthd_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97) : Started from `main()` in `labyrinthd.cpp`. Responsible for starting up and shutting down the application. -- [ThreadImport (`b-loadblk`)](https://doxygen.labyrinthcore.org/init_8cpp.html#ae9e290a0e829ec0198518de2eda579d1) +- [ThreadImport (`b-loadblk`)](https://doxygen.labyrinthcore.com/init_8cpp.html#ae9e290a0e829ec0198518de2eda579d1) : Loads blocks from `blk*.dat` files or `-loadblock=` on startup. -- [ThreadScriptCheck (`b-scriptch.x`)](https://doxygen.labyrinthcore.org/validation_8cpp.html#a925a33e7952a157922b0bbb8dab29a20) +- [ThreadScriptCheck (`b-scriptch.x`)](https://doxygen.labyrinthcore.com/validation_8cpp.html#a925a33e7952a157922b0bbb8dab29a20) : Parallel script validation threads for transactions in blocks. -- [ThreadHTTP (`b-http`)](https://doxygen.labyrinthcore.org/httpserver_8cpp.html#abb9f6ea8819672bd9a62d3695070709c) +- [ThreadHTTP (`b-http`)](https://doxygen.labyrinthcore.com/httpserver_8cpp.html#abb9f6ea8819672bd9a62d3695070709c) : Libevent thread to listen for RPC and REST connections. -- [HTTP worker threads(`b-httpworker.x`)](https://doxygen.labyrinthcore.org/httpserver_8cpp.html#aa6a7bc27265043bc0193220c5ae3a55f) +- [HTTP worker threads(`b-httpworker.x`)](https://doxygen.labyrinthcore.com/httpserver_8cpp.html#aa6a7bc27265043bc0193220c5ae3a55f) : Threads to service RPC and REST requests. -- [Indexer threads (`b-txindex`, etc)](https://doxygen.labyrinthcore.org/class_base_index.html#a96a7407421fbf877509248bbe64f8d87) +- [Indexer threads (`b-txindex`, etc)](https://doxygen.labyrinthcore.com/class_base_index.html#a96a7407421fbf877509248bbe64f8d87) : One thread per indexer. -- [SchedulerThread (`b-scheduler`)](https://doxygen.labyrinthcore.org/class_c_scheduler.html#a14d2800815da93577858ea078aed1fba) +- [SchedulerThread (`b-scheduler`)](https://doxygen.labyrinthcore.com/class_c_scheduler.html#a14d2800815da93577858ea078aed1fba) : Does asynchronous background tasks like dumping wallet contents, dumping addrman and running asynchronous validationinterface callbacks. -- [TorControlThread (`b-torcontrol`)](https://doxygen.labyrinthcore.org/torcontrol_8cpp.html#a4faed3692d57a0d7bdbecf3b37f72de0) +- [TorControlThread (`b-torcontrol`)](https://doxygen.labyrinthcore.com/torcontrol_8cpp.html#a4faed3692d57a0d7bdbecf3b37f72de0) : Libevent thread for tor connections. - Net threads: - - [ThreadMessageHandler (`b-msghand`)](https://doxygen.labyrinthcore.org/class_c_connman.html#aacdbb7148575a31bb33bc345e2bf22a9) + - [ThreadMessageHandler (`b-msghand`)](https://doxygen.labyrinthcore.com/class_c_connman.html#aacdbb7148575a31bb33bc345e2bf22a9) : Application level message handling (sending and receiving). Almost all net_processing and validation logic runs on this thread. - - [ThreadDNSAddressSeed (`b-dnsseed`)](https://doxygen.labyrinthcore.org/class_c_connman.html#aa7c6970ed98a4a7bafbc071d24897d13) + - [ThreadDNSAddressSeed (`b-dnsseed`)](https://doxygen.labyrinthcore.com/class_c_connman.html#aa7c6970ed98a4a7bafbc071d24897d13) : Loads addresses of peers from the DNS. - - [ThreadMapPort (`b-upnp`)](https://doxygen.labyrinthcore.org/net_8cpp.html#a63f82a71c4169290c2db1651a9bbe249) + - [ThreadMapPort (`b-upnp`)](https://doxygen.labyrinthcore.com/net_8cpp.html#a63f82a71c4169290c2db1651a9bbe249) : Universal plug-and-play startup/shutdown. - - [ThreadSocketHandler (`b-net`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a765597cbfe99c083d8fa3d61bb464e34) + - [ThreadSocketHandler (`b-net`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a765597cbfe99c083d8fa3d61bb464e34) : Sends/Receives data from peers on port 8333. - - [ThreadOpenAddedConnections (`b-addcon`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a0b787caf95e52a346a2b31a580d60a62) + - [ThreadOpenAddedConnections (`b-addcon`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a0b787caf95e52a346a2b31a580d60a62) : Opens network connections to added nodes. - - [ThreadOpenConnections (`b-opencon`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a55e9feafc3bab78e5c9d408c207faa45) + - [ThreadOpenConnections (`b-opencon`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a55e9feafc3bab78e5c9d408c207faa45) : Initiates new connections to peers. Ignoring IDE/editor files diff --git a/doc/man/labyrinth-cli.1 b/doc/man/labyrinth-cli.1 index bf93d00..b8ebecc 100644 --- a/doc/man/labyrinth-cli.1 +++ b/doc/man/labyrinth-cli.1 @@ -137,7 +137,7 @@ Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR. Copyright (C) 2009-2020 The Bitcoin Core developers Please contribute if you find Labyrinth Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . This is experimental software. diff --git a/doc/man/labyrinth-qt.1 b/doc/man/labyrinth-qt.1 index fd44882..b5edf8f 100644 --- a/doc/man/labyrinth-qt.1 +++ b/doc/man/labyrinth-qt.1 @@ -705,7 +705,7 @@ Show splash screen on startup (default: 1) Copyright (C) 2009-2020 The Bitcoin Core developers Please contribute if you find Labyrinth Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . This is experimental software. diff --git a/doc/man/labyrinth-tx.1 b/doc/man/labyrinth-tx.1 index 71003b7..8703579 100644 --- a/doc/man/labyrinth-tx.1 +++ b/doc/man/labyrinth-tx.1 @@ -115,7 +115,7 @@ Set register NAME to given JSON\-STRING Copyright (C) 2009-2020 The Bitcoin Core developers Please contribute if you find Labyrinth Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . This is experimental software. diff --git a/doc/man/labyrinth-wallet.1 b/doc/man/labyrinth-wallet.1 index 84b9ac5..926303d 100644 --- a/doc/man/labyrinth-wallet.1 +++ b/doc/man/labyrinth-wallet.1 @@ -65,7 +65,7 @@ Attempt to recover private keys from a corrupt wallet. Warning: Copyright (C) 2009-2020 The Bitcoin Core developers Please contribute if you find Labyrinth Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . This is experimental software. diff --git a/doc/man/labyrinthd.1 b/doc/man/labyrinthd.1 index 208fb12..adfc158 100644 --- a/doc/man/labyrinthd.1 +++ b/doc/man/labyrinthd.1 @@ -683,7 +683,7 @@ Accept command line and JSON\-RPC commands Copyright (C) 2009-2020 The Bitcoin Core developers Please contribute if you find Labyrinth Core useful. Visit - for further information about the software. + for further information about the software. The source code is available from . This is experimental software. diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 8edfd16..542a65f 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -122,8 +122,8 @@ class CMainParams : public CChainParams { assert(genesis.hashMerkleRoot == uint256S("0xb5cfc9a2963397f55992c7465f4b44961c2ab8b44ea7c8d2608c3e1ad417dfc1")); assert(genesis.mix_hash == uint256S("0xfce0ae9233d6ff6c4930784749395684e29c3257d1b72f9e9824ab680ccf5d0d")); - vSeeds.emplace_back("dns-primary-mainnet.labyrinthcore.org"); - vSeeds.emplace_back("dns-secondary-mainnet.labyrinthcore.org"); + vSeeds.emplace_back("dns-primary-mainnet.labyrinthcore.com"); + vSeeds.emplace_back("dns-secondary-mainnet.labyrinthcore.com"); base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,76); base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,26); @@ -222,8 +222,8 @@ class CTestNetParams : public CChainParams { vFixedSeeds.clear(); vSeeds.clear(); - vSeeds.emplace_back("dns-primary-testnet.labyrinthcore.org"); - vSeeds.emplace_back("dns-secondary-testnet.labyrinthcore.org"); + vSeeds.emplace_back("dns-primary-testnet.labyrinthcore.com"); + vSeeds.emplace_back("dns-secondary-testnet.labyrinthcore.com"); base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,66); base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,53); diff --git a/src/secp256k1/SECURITY.md b/src/secp256k1/SECURITY.md index be00844..eadf0ab 100644 --- a/src/secp256k1/SECURITY.md +++ b/src/secp256k1/SECURITY.md @@ -2,7 +2,7 @@ ## Reporting a Vulnerability -To report security issues send an email to secp256k1-security@labyrinthcore.org (not for support). +To report security issues send an email to secp256k1-security@labyrinthcore.com (not for support). The following keys may be used to communicate sensitive information to developers: diff --git a/src/test/netbase_tests.cpp b/src/test/netbase_tests.cpp index 7338ad5..91b2416 100644 --- a/src/test/netbase_tests.cpp +++ b/src/test/netbase_tests.cpp @@ -92,10 +92,10 @@ bool static TestSplitHost(std::string test, std::string host, int port) BOOST_AUTO_TEST_CASE(netbase_splithost) { - BOOST_CHECK(TestSplitHost("www.labyrinthcore.org", "www.labyrinthcore.org", -1)); - BOOST_CHECK(TestSplitHost("[www.labyrinthcore.org]", "www.labyrinthcore.org", -1)); - BOOST_CHECK(TestSplitHost("www.labyrinthcore.org:80", "www.labyrinthcore.org", 80)); - BOOST_CHECK(TestSplitHost("[www.labyrinthcore.org]:80", "www.labyrinthcore.org", 80)); + BOOST_CHECK(TestSplitHost("www.labyrinthcore.com", "www.labyrinthcore.com", -1)); + BOOST_CHECK(TestSplitHost("[www.labyrinthcore.com]", "www.labyrinthcore.com", -1)); + BOOST_CHECK(TestSplitHost("www.labyrinthcore.com:80", "www.labyrinthcore.com", 80)); + BOOST_CHECK(TestSplitHost("[www.labyrinthcore.com]:80", "www.labyrinthcore.com", 80)); BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("127.0.0.1:8333", "127.0.0.1", 8333)); BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", -1)); diff --git a/test/get_previous_releases.py b/test/get_previous_releases.py index 2d684bf..df111e5 100755 --- a/test/get_previous_releases.py +++ b/test/get_previous_releases.py @@ -49,7 +49,7 @@ def download_binary(tag, args) -> int: match.group(1), match.group(2)) tarball = 'labyrinth-{tag}-{platform}.tar.gz'.format( tag=tag[1:], platform=args.platform) - tarballUrl = 'https://labyrinthcore.org/{bin_path}/{tarball}'.format( + tarballUrl = 'https://labyrinthcore.com/{bin_path}/{tarball}'.format( bin_path=bin_path, tarball=tarball) print('Fetching: {tarballUrl}'.format(tarballUrl=tarballUrl))