aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2017-02-24doc: Small release notes fixups in the list of pullsMarcoFalke
2017-02-23Merge #9787: release: add a few performance-related notesWladimir J. van der Laan
95e68df release: add a few performance-related notes (Cory Fields)
2017-02-23release: add a few performance-related notesCory Fields
2017-02-23doc: Add authors and changes since rc1 to release notesv0.14.0rc2Wladimir J. van der Laan
2017-02-21Fix typo in release notes.Chris Moore
2017-02-17Merge #9784: Restore removed release notes.Wladimir J. van der Laan
1577f07 Restore removed release notes. (Gregory Maxwell)
2017-02-17doc: Add changelog for 0.14.0 to release notesWladimir J. van der Laan
2017-02-17Restore removed release notes.Gregory Maxwell
2017-02-17doc: Add list of authors to release notesWladimir J. van der Laan
Generated from git, so there may be duplicate authors if someone used multiple mail addresses.
2017-02-17doc: Update manpages for 0.14.0Wladimir J. van der Laan
2017-02-17doc: Update release notes from wikiWladimir J. van der Laan
2017-02-17build: bump version to 0.14.0Wladimir J. van der Laan
2017-02-16Merge #9675: Fix typo and spelling inconsistency in CONTRIBUTING.mdWladimir J. van der Laan
36164fa Fix typo and spelling inconsistency in CONTRIBUTING.md (Koki Takahashi)
2017-02-09Fix typo and spelling inconsistency in CONTRIBUTING.mdKoki Takahashi
Fix spellings of GitHub Remove unnecessary changes Fix GitHub spelling on doc/translation_process.md
2017-02-07Update OpenBSD and FreeBSD build stepsWladimir J. van der Laan
Re-try with most recent versions, and use BDB_CFLAGS/BDB_LIBS to directly point at BerkeleyDB instead of CPPFLAGS hacks.
2017-01-28[doc] Remove unused clang format dev scriptMarcoFalke
Also, update the clang format file to reflect the current coding style mentioned in the developer notes.
2017-01-19Add fundrawtransactions new reserveChangeKey option to the release notesJonas Schnelli
2017-01-16Merge #9484: Introduce assumevalid setting to skip validation presumed valid ↵Pieter Wuille
scripts. 7b5e3fe Add assumevalid testcase (John Newbery) e440ac7 Introduce assumevalid setting to skip presumed valid scripts. (Gregory Maxwell)
2017-01-15Merge #9550: Trim down the XP notice and say more about what we support.MarcoFalke
7094bf7 Trim down the XP notice and say more about what we support. (Gregory Maxwell)
2017-01-15Trim down the XP notice and say more about what we support.Gregory Maxwell
The big notice at the top of the release note is not interesting to most users now and apparently comes across poorly to some. Better to provide more information about what we do support.
2017-01-13Introduce assumevalid setting to skip presumed valid scripts.Gregory Maxwell
This disentangles the script validation skipping from checkpoints. A new option is introduced "assumevalid" which specifies a block whos ancestors we assume all have valid scriptsigs and so we do not check them when they are also burried under the best header by two weeks worth of work. Unlike checkpoints this has no influence on consensus unless you set it to a block with an invalid history. Because of this it can be easily be updated without risk of influencing the network consensus. This results in a massive IBD speedup. This approach was independently recommended by Peter Todd and Luke-Jr since POW based signature skipping (see PR#9180) does not have the verifiable properties of a specific hash and may create bad incentives. The downside is that, like checkpoints, the defaults bitrot and older releases will sync slower. On the plus side users can provide their own value here, and if they set it to something crazy all that will happen is more time will be spend validating signatures. Checkblocks and checklevel are also moved to the hidden debug options: Especially now that checkblocks has a low default there is little need to change these settings, and users frequently misunderstand them as influencing security or IBD speed. By hiding them we offset the space added by this new option.
2017-01-12Document fee estimation changesAlex Morcos
2017-01-12Clarify that prioritisetransaction remains supportedAlex Morcos
2017-01-11Merge #7871: Manual block file pruning.Wladimir J. van der Laan
afffeea fixup! Add pruneblockchain RPC to enable manual block file pruning. (Russell Yanofsky) 1fc4ec7 Add pruneblockchain RPC to enable manual block file pruning. (mrbandrews)
2017-01-10Improve style w.r.t. ifPieter Wuille
2017-01-10Add pruneblockchain RPC to enable manual block file pruning.mrbandrews
2017-01-05Add release notes for addnode changes.Gregory Maxwell
2017-01-04[Doc] Install Protobuf v3 on OS Xfanquake
2017-01-03doc: Add historical release notes for 0.13.2Wladimir J. van der Laan
2017-01-02Merge #9412: build: Fix 'make deploy' for OSXJonas Schnelli
2fb98f6 Fix bug in dmg builder so that it actually reads in the configuration file (Don Patterson) b01667c Mention RSVG dependency when creating the disk image on OSX (Jonas Schnelli) 09aefb5 build: Fix 'make deploy' for OSX (Cory Fields)
2016-12-29Update the Windows build notesDouglas Roark
- Clarify the Windows Subsystem For Linux section. - Clarify the build requirements.
2016-12-23Mention RSVG dependency when creating the disk image on OSXJonas Schnelli
2016-12-15doc: Add bare-bones documentation for fuzzingWladimir J. van der Laan
2016-12-02Developer docs about existing subtrees.Gregory Maxwell
Add some notes about the workflow for changes to code that exists in subtrees.
2016-11-25doc: Improve windows build instructions using Linux subsystemWladimir J. van der Laan
I did a build on a windows 10 laptop and took notes, and tried to improve the document: - It's the Linux subsystem for Windows, not the other way around. - Split out dependencies: general ones, 64-bit, 32-bit. Remove the reference to `build-unix.md`, easy enough to be self-contained. - Place 64-bit instructions first. 99% will want these. - Installation instructions: recommend using `/` for prefix, same as we do on gitian builds. This will allow copying the files to a usable (from Windows) place using just `make DESTDIR=...`. - Remove double spaces / consistent width reformatting.
2016-11-23[Doc] Move comments above bash commandAmir Abrams
2016-11-21Merge #9179: Set DEFAULT_LIMITFREERELAY = 0 kB/minuteWladimir J. van der Laan
fa7cc5a Set DEFAULT_LIMITFREERELAY = 0 kB/minute (MarcoFalke)
2016-11-18Set DEFAULT_LIMITFREERELAY = 0 kB/minuteMarcoFalke
2016-11-17Doxygen: Set PROJECT_NAME = "Bitcoin Core"MarcoFalke
2016-11-09Merge #8794: Enable -Wshadow by defaultWladimir J. van der Laan
359bac7 Add notes about variable names and shadowing (Pavel Janík) fd5654c Check and enable -Wshadow by default. (Pavel Janík)
2016-11-09Add notes about variable names and shadowingPavel Janík
2016-11-07Merge #7730: Remove priority estimationWladimir J. van der Laan
0bd581a add release notes for removal of priority estimation (Alex Morcos) b2322e0 Remove priority estimation (Alex Morcos)
2016-11-07add release notes for removal of priority estimationAlex Morcos
2016-11-07[doc] release-process: Mention GitHub release and archived release notesMarcoFalke
2016-11-03Merge #9053: IBD using chainwork instead of height and not using header ↵Pieter Wuille
timestamps e141beb IsInitialBlockDownload no longer uses header-only timestamps. (Gregory Maxwell) 2082b55 Remove GetTotalBlocksEstimate and checkpoint tests that test nothing. (Gregory Maxwell) fd46136 IBD check uses minimumchain work instead of checkpoints. (Gregory Maxwell)
2016-11-02Merge `doc/unit-tests.md` into `src/test/README.md`Wladimir J. van der Laan
Refer to the right file in the top-level README.md. Having only one file with test documentation saves some confusion about where things are documented.
2016-11-02IBD check uses minimumchain work instead of checkpoints.Gregory Maxwell
This introduces a 'minimum chain work' chainparam which is intended to be the known amount of work in the chain for the network at the time of software release. If you don't have this much work, you're not yet caught up. This is used instead of the count of blocks test from checkpoints. This criteria is trivial to keep updated as there is no element of subjectivity, trust, or position dependence to it. It is also a more reliable metric of sync status than a block count.
2016-10-31Add mempool.dat to doc/files.mdPieter Wuille
2016-10-27Merge #9033: Update build notes for dropping osx 10.7 support (fanquake)Wladimir J. van der Laan
ba26d41 Update build notes for dropping osx 10.7 support (Michael Ford)
2016-10-27doc: Add release notes for 0.13.1 releaseWladimir J. van der Laan