Skip to content

Commit

Permalink
Release 2.1.0 (#84)
Browse files Browse the repository at this point in the history
Update for 2.1.0 release
  • Loading branch information
shane-kerr authored Sep 1, 2018
1 parent 75ab8dd commit 94c63fe
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 30 deletions.
26 changes: 5 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,21 @@ saving your coins while securing the MintCoin network.
* PoS interest: 5% annual
* 4 confirmations for transaction
* Fast 2 minutes confirmation time for transactions!
* 50 confirmations for minted blocks
* 60 confirmations for minted blocks
* Ports: 12788 (connection) and 12789 (RPC)

# Community

The official MintCoin web site:

https://mintcoinofficial.com/
http://www.mintcoinofficial.eu/

The MintCoin team is on Twitter:

https://twitter.com/MintCoin_
The MintCoin team is on Twitter, @MintCoin_Team.

The Telegram MintCoin group:

https://t.me/joinchat/AYSXZBGdWRH6jeIX_EJijg

A MintCoin fan site:

http://www.mintymintcoin.com/

# FAQ

Q: How long does it take before I can start minting?
Expand All @@ -45,16 +39,10 @@ A: You can mint 20 days after you get MintCoin in your wallet.
Q: What interest rate do I get?
A: 5% annually (that is, 5% per year).

Q: My wallet cannot connect to any nodes!!! What can I do?
A: For now, you have to add some nodes by hand (sorry). You can do
this by adding the nodes listed here:
https://snapshot.mintcoin.zone/peers.txt
To your `MintCoin.conf` file.

Q: My wallet is taking really long to synchronize. How can I speed this up?
A: For now, you can either be patient or download a snapshot (sorry).
You can find a snapshot here:
https://snapshot.mintcoin.zone/blockchain.zip
https://mega.nz/#F!uKIQhYRY!CzW5ZhvHHEQ9hmX8-Wpoqw
Stop your wallet, extract that into your MintCoin directory, and
then restart your wallet. It will then start synchronizing from the
time the last snapshot was taken.
Expand All @@ -80,10 +68,6 @@ GitHub releases link:

https://github.com/MintCoinCommunity/MintCoin-Desktop-Wallet/releases

If you want pre-release binaries, they may be available on this site:

https://snapshot.mintcoin.zone/

# Building the MintCoin Wallet

There are two separate flavors of MintCoin wallet:
Expand All @@ -99,7 +83,7 @@ Directions for the graphical version are found in

Directions for the daemon version are found in
[doc/build-unix.txt](doc/build-unix.txt),
[doc/build-msw.txt](doc/build-msw.txt), or
[doc/windows-cross-compile.md](doc/windows-cross-compile.md), or
[doc/build-osx.txt](doc/build-osx.txt), depending on whether you are
building for a Unix-like system, Microsoft Windows, or macOS,
respectively.
Expand Down
2 changes: 1 addition & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 2.1.0-beta1
# 2.1.0

_Welcome back, MintCoin!_

Expand Down
2 changes: 1 addition & 1 deletion doc/README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright (c) 2013-2018 MintCoin Developers


MintCoin 2.1.0-beta1
MintCoin 2.1.0

Copyright (c) 2013-2018 MintCoin Developers
Copyright (c) 2013 NovaCoin Developers
Expand Down
2 changes: 1 addition & 1 deletion doc/README_windows.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright (c) 2013-2018 MintCoin Developers


MintCoin 2.1.0-beta1
MintCoin 2.1.0

Copyright (c) 2013-2018 MintCoin Developers
Copyright (c) 2013 NovaCoin Developers
Expand Down
2 changes: 1 addition & 1 deletion mintcoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = MintCoin-Qt
VERSION = 2.1.0-beta1
VERSION = 2.1.0
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN __NO_SYSTEM_INCLUDES
CONFIG += no_include_pwd
Expand Down
2 changes: 1 addition & 1 deletion share/genbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
exit 1
fi

DESC="v2.1.0-beta1"
DESC="v2.1.0"
SUFFIX=""
LAST_COMMIT_DATE=""
if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
Expand Down
4 changes: 2 additions & 2 deletions share/setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ SetCompressor /SOLID lzma

# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
!define VERSION 2.1.0-beta1
VIProductVersion "2.1.0.0"
!define VERSION 2.1.0
VIProductVersion "2.1.0.1"
!define COMPANY "MintCoin Community"
!define URL http://www.mintcoinofficial.com

Expand Down
4 changes: 2 additions & 2 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
#define CLIENT_VERSION_MAJOR 2
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 1

// Client version number
#define CLIENT_VERSION_SUFFIX ""

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE false
#define CLIENT_VERSION_IS_RELEASE true

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down

0 comments on commit 94c63fe

Please sign in to comment.