Luke Dashjr
6f933c6bb6
Trivial Bugfix: doc/gitian-building.md: Link to release-process needs to be updated
...
Section was renamed in c907f4d56b
8 years ago
unsystemizer
04d91f4a8c
Trivial: Fix ISO URL, capitalization
...
- Changed Debian 8.5.0 ISO CD ROM URL by redirecting from current (which now has only 8.6.0) to a persistent archive link which should not change anytime soon.
- Added a link to official Debian checksum verification procedure (which is more verbose and also acts as a backup source of SHA256sum's)
- Fix capitalization (iso)
8 years ago
Marty Jones
12a721b45e
Trivial: Fix typo
8 years ago
Michael Ford
b16a7f609f
[Doc] Target protobuf 2.6 in OS X build notes.
...
Homebrew now installs Protobuf version 3 by default, which doesn't currently compile. Install Protobuf 2.6.x from the versions tap instead.
8 years ago
Anders Øyvind Urke-Sætre
dad932c241
Minor change in section name
...
Changed 'build' to 'create', as the section name have changed in newer versions of release-process.md
8 years ago
Jonas Schnelli
1b6bcdd3aa
Remove maxuploadtargets recommended minimum
8 years ago
Gaurav Rana
df2d2e70ca
update name of file bitcoin.qrc
8 years ago
nomnombtc
09546ca0c9
regenerated all manpages with commit tag stripped, also add bitcoin-tx
8 years ago
Pieter Wuille
854f1af22e
Make the dummy argument to getaddednodeinfo optional
8 years ago
djpnewton
f012a857f5
rest.cpp: change HTTP_INTERNAL_SERVER_ERROR to HTTP_BAD_REQUEST
8 years ago
MarcoFalke
fae6bb85cf
[doc] build: Mention curl
8 years ago
Luke Dashjr
b729fcdb84
Include instructions to extract Mac OS X SDK on Linux using 7zip and SleuthKit
8 years ago
Wladimir J. van der Laan
6275123ce9
doc: Update build-openbsd for 0.13.0+ and OpenBSD 5.9
...
- Python 3 now supported.
- Bump boost version to 1.61 - one boost patch no longer needed.
- All checked with OpenBSD 5.9, except for the clang part, I left this
as-is for someone adventurous.
- Mention overriding resource limits, OpenBSD's default ulimit does not
suffice for building Bitcoin Core with gcc 4.9.3.
8 years ago
nomnombtc
00dba72cc3
add doc/man/Makefile.am to include manpages
8 years ago
nomnombtc
eb5643b7c7
add autogenerated manpages by help2man
8 years ago
fanquake
c25083bcef
[trivial][doc] Mention gpg --refresh-keys in release-process.md
8 years ago
fanquake
ab53207b9c
[trivial][doc] Mention ++i as preferred to i++ in dev notes
8 years ago
MarcoFalke
fab5ecb771
[wallet] rpc: Drop misleading option
8 years ago
djpnewton
c91103573b
Add default port numbers to REST doc
8 years ago
Wladimir J. van der Laan
9358893518
doc: Add historical release notes for 0.12.1 0.13.0
8 years ago
Justin Camarena
e11f9a2f02
[doc] typos, READMEs, comments
...
Just a quick run through some docs and fixing some text errors.
8 years ago
fanquake
7fdbce9de4
[doc] Increase recommended memory in gitian build guide
8 years ago
Wladimir J. van der Laan
5e3557b8e3
doc: Clean out release notes
...
Now that 0.13 has branched, release notes for 0.13 should be maintained
there, and the release notes file on master is for 0.14 release
notes.
8 years ago
Wladimir J. van der Laan
6c0336c772
build: bump version to 0.13.99
...
Now that 0.13 branch has been split off, master is 0.13.99 (pre-0.14).
8 years ago
MarcoFalke
faa59318db
[doc] gbuild: Set memory explicitly (default is too low)
8 years ago
Krzysztof Jurewicz
d6dc1bc49b
Fix 0.12 release notes on block relaying
...
The previous information about block relaying in pruned mode suggested
that blocks are relayed only to nodes that support BIP 130, which is not
true.
8 years ago
Wladimir J. van der Laan
efd1d8339a
doc: Mention dbcache increase in release notes
8 years ago
fanquake
ab0c35a290
[Doc] Update bips.md for CSV softfork.
8 years ago
BtcDrak
14d01309be
Rename OP_NOP3 to OP_CHECKSEQUENCEVERIFY
8 years ago
Wladimir J. van der Laan
b0be3a0186
doc: Mention Windows XP end of support in release notes
...
Closes #7681 .
8 years ago
Wladimir J. van der Laan
05f64c9940
doc: Mention Linux ARM builds in release notes
8 years ago
Wladimir J. van der Laan
b7bf037121
doc: Mention ARM executables in release process
...
Mention ARM executables in the release process documentation
(these were introduced in #8188 ).
As well as that Linux tarballs have changed name to contain an
architecture tuple, instead of `linux32`/`linux64`.
Also mention that `-debug` files should not be uploaded (these were
introduced in #8167 ).
8 years ago
fanquake
e5a680dc6a
[Doc] Update OS X build notes for 10.11 SDK
8 years ago
Matt Corallo
678ee9793f
Add BIP 152 to implemented BIPs list
8 years ago
Nathaniel Mahieu
9e3ec74fac
Clarify documentation for running a tor node
...
Previous wording suggested that no additional setup was required for a
tor hidden service to be created.
9 years ago
fanquake
b0938a0020
[trivial][doc] Use Debian 8.5 in the gitian-build guide
9 years ago
Wladimir J. van der Laan
7982fce64c
doc: Mention full UTF-8 support in release notes
9 years ago
Jonas Schnelli
17c0131fad
[Docs] Add release notes and bip update for Bip32/HD wallets
9 years ago
Kaz Wesley
654a211622
developer notes: updates for C++11
...
- boost::scoped_ptr is obsolete
- std::vector::data replaces begin_ptr / end_ptr
9 years ago
Suhas Daftuar
176e19b571
Mention new RPC's in release notes
9 years ago
Pieter Wuille
31444491f2
Add git and github tips and tricks to developer notes
9 years ago
Wladimir J. van der Laan
e012f3cea0
util: Add ParseUInt32 and ParseUInt64
...
Add error and range-checking parsers for unsigned 32 and 64 bit numbers.
The 32-bit variant is required for parsing sequence numbers from the
command line in `bitcoin-tx` (see #8164 for discussion). I've thrown in
the 64-bit variant as a bonus, as I'm sure it will be needed at some
point.
Also adds tests, and updates `developer-notes.md`.
9 years ago
fanquake
e4f73c76b3
[Doc] Update implemented BIPs list
9 years ago
fanquake
1a8c4d575d
[Doc] Add benchmarking notes
9 years ago
Wladimir J. van der Laan
6075bc4d67
doc: 32 and 64 bit packages are seperate
9 years ago
fanquake
2692e1b10b
[Doc] Simplify OS X build notes
...
Add —c++11 flags to brew dependancies that support it
Remove release-build section, this is covered by depends/release-notes
9 years ago
Wladimir J. van der Laan
e5764e69cb
doc: Remove outdated qt4 install information from README.md
...
This text is aimed at users installing the binaries.
Now that Qt5 is linked statically, there is no need to install Qt
as a run-time dependency.
9 years ago
MarcoFalke
fadd048592
[doc] Link to clang-format in the developer notes
9 years ago
Warren Togami
b3d18ba072
doc: Fedora build requirements, add gcc-c++ and fix typo
9 years ago
JeremyRand
b06f6a992b
Fixed invalid example paths in gitian-building.md
...
The example local paths for "Building fully offline" have an extraneous ".git". This caused an error when trying to run gbuild, like this
fatal: '/home/user/bitcoin.git' does not appear to be a git repository
fatal: Could not read from remote repository.
This commit fixes that.
9 years ago