update docs and release notes

This commit is contained in:
vertoe 2015-01-12 11:23:07 +01:00
parent daf9018b7f
commit de106ccf7b
5 changed files with 780 additions and 766 deletions

View File

@ -5,7 +5,7 @@ http://www.darkcoin.io
Copyright (c) 2009-2015 Bitcoin Core Developers Copyright (c) 2009-2015 Bitcoin Core Developers
Copyright (c) 2014 Darkcoin Core Developers Copyright (c) 2014-2015 Darkcoin Core Developers
What is Darkcoin? What is Darkcoin?

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,10 @@
Bitcoin 0.9.4 BETA Darkcoin 0.11.x BETA
===================== ====================
Copyright (c) 2009-2015 Bitcoin Developers Copyright (c) 2009-2015 Bitcoin Developers
Copyright (c) 2014-2015 Darkcoin Developers
Setup Setup
--------------------- ---------------------
@ -10,7 +12,7 @@ Setup
Running Running
--------------------- ---------------------
The following are some helpful notes on how to run Bitcoin on your native platform. The following are some helpful notes on how to run Bitcoin on your native platform.
### Unix ### Unix

View File

@ -1,6 +1,7 @@
Bitcoin 0.9.4 BETA Darkcoin 0.11.x BETA
Copyright (c) 2009-2015 Bitcoin Core Developers Copyright (c) 2009-2015 Bitcoin Core Developers
Copyright (c) 2014-2015 Darkcoin Core Developers
Distributed under the MIT/X11 software license, see the accompanying Distributed under the MIT/X11 software license, see the accompanying
file COPYING or http://www.opensource.org/licenses/mit-license.php. file COPYING or http://www.opensource.org/licenses/mit-license.php.

View File

@ -86,6 +86,7 @@ RPC:
- Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance - Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
- Explicitly ensure that wallet is unlocked in `importprivkey` - Explicitly ensure that wallet is unlocked in `importprivkey`
- Add check for valid keys in `importprivkey` - Add check for valid keys in `importprivkey`
- Disable SSLv3 (in favor of TLS) for the RPC client and server.
Command-line options: Command-line options:
@ -102,6 +103,7 @@ Command-line options:
- RPC client option: '-rpcwait', to wait for server start - RPC client option: '-rpcwait', to wait for server start
- Remove '-logtodebugger' - Remove '-logtodebugger'
- Allow `-noserver` with darkcoind - Allow `-noserver` with darkcoind
- Make -proxy set all network types, avoiding a connect leak.
Block-chain handling and storage: Block-chain handling and storage:
@ -145,6 +147,7 @@ Protocol and network code:
- Process received messages one at a time without sleeping between messages - Process received messages one at a time without sleeping between messages
- Improve logging of failed connections - Improve logging of failed connections
- Add some additional logging to give extra network insight - Add some additional logging to give extra network insight
- Limit the number of new addressses to accumulate
Wallet: Wallet:
@ -236,6 +239,9 @@ Validation:
- Reject non-canonically-encoded serialization sizes - Reject non-canonically-encoded serialization sizes
- Reject dust amounts during validation - Reject dust amounts during validation
- Accept nLockTime transactions that finalize in the next block - Accept nLockTime transactions that finalize in the next block
- consensus: guard against openssl's new strict DER checks
- fail immediately on an empty signature
- Improve robustness of DER recoding code
Build system: Build system:
@ -260,6 +266,9 @@ Build system:
- Solaris compatibility fixes - Solaris compatibility fixes
- Check integrity of gitian input source tarballs - Check integrity of gitian input source tarballs
- Enable full GCC Stack-smashing protection for all OSes - Enable full GCC Stack-smashing protection for all OSes
- build: Fix OSX build when using Homebrew and qt5
- Keep symlinks when copying into .app bundle
- osx: fix signing to make Gatekeeper happy (again)
Miscellaneous: Miscellaneous:
@ -274,3 +283,5 @@ Miscellaneous:
- Add missing cs_main and wallet locks - Add missing cs_main and wallet locks
- Avoid exception at startup when system locale not recognized - Avoid exception at startup when system locale not recognized
- devtools: add a script to fetch and postprocess translations - devtools: add a script to fetch and postprocess translations
- Refactor -alertnotify code
- doc: Add instructions for consistent Mac OS X build names