Skip to content

Commit

Permalink
Merge pull request #590 from thrasher-/0.17
Browse files Browse the repository at this point in the history
Litecoin Core 0.17.1 final basic commits
  • Loading branch information
wangxinxi authored Apr 8, 2019
2 parents f22cd11 + d9b8d9e commit 1b6c480
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
4 changes: 2 additions & 2 deletions doc/man/litecoin-cli.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH LITECOIN-CLI "1" "February 2019" "litecoin-cli v0.17.1.0" "User Commands"
.TH LITECOIN-CLI "1" "April 2019" "litecoin-cli v0.17.1.0" "User Commands"
.SH NAME
litecoin-cli \- manual page for litecoin-cli v0.17.1.0
.SH SYNOPSIS
Expand All @@ -15,7 +15,7 @@ litecoin-cli \- manual page for litecoin-cli v0.17.1.0
.B litecoin-cli
[\fI\,options\/\fR] \fI\,help <command> Get help for a command\/\fR
.SH DESCRIPTION
Litecoin Core RPC client version v0.17.1.0\-dirty
Litecoin Core RPC client version v0.17.1.0
.SH OPTIONS
.HP
\-?
Expand Down
4 changes: 2 additions & 2 deletions doc/man/litecoin-qt.1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH LITECOIN-QT "1" "February 2019" "litecoin-qt v0.17.1.0" "User Commands"
.TH LITECOIN-QT "1" "April 2019" "litecoin-qt v0.17.1.0" "User Commands"
.SH NAME
litecoin-qt \- manual page for litecoin-qt v0.17.1.0
.SH SYNOPSIS
.B litecoin-qt
[\fI\,command-line options\/\fR]
.SH DESCRIPTION
Litecoin Core version v0.17.1.0\-dirty (64\-bit)
Litecoin Core version v0.17.1.0 (64\-bit)
.SH OPTIONS
.HP
\-?
Expand Down
4 changes: 2 additions & 2 deletions doc/man/litecoin-tx.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH LITECOIN-TX "1" "February 2019" "litecoin-tx v0.17.1.0" "User Commands"
.TH LITECOIN-TX "1" "April 2019" "litecoin-tx v0.17.1.0" "User Commands"
.SH NAME
litecoin-tx \- manual page for litecoin-tx v0.17.1.0
.SH SYNOPSIS
Expand All @@ -9,7 +9,7 @@ litecoin-tx \- manual page for litecoin-tx v0.17.1.0
.B litecoin-tx
[\fI\,options\/\fR] \fI\,-create \/\fR[\fI\,commands\/\fR] \fI\,Create hex-encoded litecoin transaction\/\fR
.SH DESCRIPTION
Litecoin Core litecoin\-tx utility version v0.17.1.0\-dirty
Litecoin Core litecoin\-tx utility version v0.17.1.0
.SH OPTIONS
.HP
\-?
Expand Down
4 changes: 2 additions & 2 deletions doc/man/litecoind.1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH LITECOIND "1" "February 2019" "litecoind v0.17.1.0" "User Commands"
.TH LITECOIND "1" "April 2019" "litecoind v0.17.1.0" "User Commands"
.SH NAME
litecoind \- manual page for litecoind v0.17.1.0
.SH SYNOPSIS
.B litecoind
[\fI\,options\/\fR] \fI\,Start Litecoin Core Daemon\/\fR
.SH DESCRIPTION
Litecoin Core Daemon version v0.17.1.0\-dirty
Litecoin Core Daemon version v0.17.1.0
.SH OPTIONS
.HP
\-?
Expand Down
9 changes: 6 additions & 3 deletions doc/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,17 +113,20 @@ The gbuild invocations below <b>DO NOT DO THIS</b> by default.

### Build and sign Litecoin Core for Linux, Windows, and macOS:

export GITIAN_THREADS=2
export GITIAN_MEMORY=3000

pushd ./gitian-builder
./bin/gbuild --num-make 2 --memory 3000 --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-linux.yml
./bin/gbuild --num-make $GITIAN_THREADS --memory $GITIAN_MEMORY --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-linux.yml
./bin/gsign --signer "$SIGNER" --release ${VERSION}-linux --destination ../gitian.sigs.ltc/ ../litecoin/contrib/gitian-descriptors/gitian-linux.yml
mv build/out/litecoin-*.tar.gz build/out/src/litecoin-*.tar.gz ../

./bin/gbuild --num-make 2 --memory 3000 --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-win.yml
./bin/gbuild --num-make $GITIAN_THREADS --memory $GITIAN_MEMORY --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-win.yml
./bin/gsign --signer "$SIGNER" --release ${VERSION}-win-unsigned --destination ../gitian.sigs.ltc/ ../litecoin/contrib/gitian-descriptors/gitian-win.yml
mv build/out/litecoin-*-win-unsigned.tar.gz inputs/litecoin-win-unsigned.tar.gz
mv build/out/litecoin-*.zip build/out/litecoin-*.exe ../

./bin/gbuild --num-make 2 --memory 3000 --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-osx.yml
./bin/gbuild --num-make $GITIAN_THREADS --memory $GITIAN_MEMORY --commit litecoin=v${VERSION} ../litecoin/contrib/gitian-descriptors/gitian-osx.yml
./bin/gsign --signer "$SIGNER" --release ${VERSION}-osx-unsigned --destination ../gitian.sigs.ltc/ ../litecoin/contrib/gitian-descriptors/gitian-osx.yml
mv build/out/litecoin-*-osx-unsigned.tar.gz inputs/litecoin-osx-unsigned.tar.gz
mv build/out/litecoin-*.tar.gz build/out/litecoin-*.dmg ../
Expand Down
2 changes: 1 addition & 1 deletion src/qt/intro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

static const uint64_t GB_BYTES = 1000000000LL;
/* Minimum free space (in GB) needed for data directory */
constexpr uint64_t BLOCK_CHAIN_SIZE = 20;
constexpr uint64_t BLOCK_CHAIN_SIZE = 22;
/* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */
static const uint64_t CHAIN_STATE_SIZE = 3;
/* Total required space (in GB) depending on user choice (prune, not prune) */
Expand Down
2 changes: 1 addition & 1 deletion src/qt/splashscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SplashScreen::SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const Netw
QWidget(0, f), curAlignment(0), m_node(node)
{
// set reference point, paddings
int paddingRight = 70;
int paddingRight = 75;
int paddingTop = 110;
int titleVersionVSpace = 17;
int titleCopyrightVSpace = 40;
Expand Down

0 comments on commit 1b6c480

Please sign in to comment.