Rename all links to our GitHub repo (#1537)

This commit is contained in:
Roy Keene 2019-01-02 16:00:27 -06:00 committed by GitHub
commit 8fadeac3bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 18 deletions

View file

@ -74,6 +74,6 @@ Can you please provide the Nano logs for further analysis.
How to find Nano logs:
https://github.com/nanocurrency/raiblocks/wiki/Log-files
https://github.com/nanocurrency/nano-node/wiki/Log-files
-->

View file

@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.4)
project (nano-core)
project (nano-node)
set (CPACK_PACKAGE_VERSION_MAJOR "18")
set (CPACK_PACKAGE_VERSION_MINOR "0")

View file

@ -18,7 +18,7 @@ We've applied the philosophy of _"do one thing and do it well."_ We are focused
### Key Features
* Nano utilizes a novel [block-lattice](https://github.com/nanocurrency/raiblocks/wiki/Block-lattice) architecture, unlike conventional blockchains used in many other cryptocurrencies.
* Nano utilizes a novel [block-lattice](https://github.com/nanocurrency/nano-node/wiki/Block-lattice) architecture, unlike conventional blockchains used in many other cryptocurrencies.
* The network requires minimal resources, no high-power mining hardware, and can process high transaction throughput.
* Offers instantaneous transactions with zero fees and unlimited scalability, making Nano an ideal solution for peer-to-peer transactions.
* As of August 2018, the Nano network has processed over twelve million blocks with an unpruned ledger size of only 4.6GB.
@ -28,12 +28,12 @@ For more information, see [Nano.org](https://nano.org/) or read the [whitepaper]
### Guides & Documentation
* [Whitepaper](https://nano.org/en/whitepaper)
* [Build Instructions](https://github.com/nanocurrency/raiblocks/wiki/Build-Instructions)
* [Command Line Interface](https://github.com/nanocurrency/raiblocks/wiki/Command-line-interface)
* [RPC Protocol](https://github.com/nanocurrency/raiblocks/wiki/RPC-protocol)
* [Wallet Design](https://github.com/nanocurrency/raiblocks/wiki/Wallet-design)
* [Block-Lattice](https://github.com/nanocurrency/raiblocks/wiki/Block-lattice)
* [Design Features](https://github.com/nanocurrency/raiblocks/wiki/Design-features)
* [Build Instructions](https://github.com/nanocurrency/nano-node/wiki/Build-Instructions)
* [Command Line Interface](https://github.com/nanocurrency/nano-node/wiki/Command-line-interface)
* [RPC Protocol](https://github.com/nanocurrency/nano-node/wiki/RPC-protocol)
* [Wallet Design](https://github.com/nanocurrency/nano-node/wiki/Wallet-design)
* [Block-Lattice](https://github.com/nanocurrency/nano-node/wiki/Block-lattice)
* [Design Features](https://github.com/nanocurrency/nano-node/wiki/Design-features)
### Links & Resources
@ -43,13 +43,13 @@ For more information, see [Nano.org](https://nano.org/) or read the [whitepaper]
* [Reddit](https://reddit.com/r/nanocurrency)
* [Medium](https://medium.com/nanocurrency)
* [Twitter](https://twitter.com/nano)
* [GitHub wiki](https://github.com/nanocurrency/raiblocks/wiki)
* [GitHub wiki](https://github.com/nanocurrency/nano-node/wiki)
### Want to Contribute?
Please see the [contributors guide](https://github.com/nanocurrency/raiblocks/wiki/Contributing).
Please see the [contributors guide](https://github.com/nanocurrency/nano-node/wiki/Contributing).
### Contact us
We want to hear about any trouble, success, delight, or pain you experience when
using Nano. Let us know by [filing an issue](https://github.com/nanocurrency/raiblocks/issues), joining us on [reddit](https://reddit.com/r/nanocurrency), or joining us on [Discord](https://chat.nano.org/).
using Nano. Let us know by [filing an issue](https://github.com/nanocurrency/nano-node/issues), joining us on [reddit](https://reddit.com/r/nanocurrency), or joining us on [Discord](https://chat.nano.org/).

View file

@ -153,10 +153,10 @@ function changelog () {
continue
fi
echo "## Release [${tag_name}](https://github.com/nanocurrency/raiblocks/tree/${tag_name}) (${milestone_date})"
echo "## Release [${tag_name}](https://github.com/nanocurrency/nano-node/tree/${tag_name}) (${milestone_date})"
echo ""
echo "[Full Changelog](https://github.com/nanocurrency/raiblocks/compare/${previous_milestone_name}...${tag_name})"
echo "[Full Changelog](https://github.com/nanocurrency/nano-node/compare/${previous_milestone_name}...${tag_name})"
echo ""
unset itemToTags itemToName itemURL categoryIds

View file

@ -6,7 +6,7 @@
if [ -e $1 ]; then
echo "makesrc <tag>" >&2
echo " tag valid <tag> for nanocurrency/raiblocks" >&2
echo " tag valid <tag> for nanocurrency/nano-node" >&2
exit 1
fi
@ -17,7 +17,7 @@ VERSION_MAJOR=`echo $VERSION |cut -d "." -f 1`
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
function make_source () {
git clone --recursive --single-branch --branch releases/v${VERSION_MAJOR} https://github.com/nanocurrency/raiblocks nano-$VERSION
git clone --recursive --single-branch --branch releases/v${VERSION_MAJOR} https://github.com/nanocurrency/nano-node nano-$VERSION
cd nano-$VERSION
git pull --tags
COUNT=`git tag -l "${TAG}" | wc -l`
@ -41,10 +41,10 @@ function source_information () {
case "${VERSION}" in
*RC*)
"${scriptDir}/changelog_generator" nanocurrency/raiblocks "V${VERSION}" only
"${scriptDir}/changelog_generator" nanocurrency/nano-node "V${VERSION}" only
;;
*)
"${scriptDir}/changelog_generator" nanocurrency/raiblocks "V${VERSION}"
"${scriptDir}/changelog_generator" nanocurrency/nano-node "V${VERSION}"
;;
esac