The Bitcoin Dev Team - Bitcoin 0.9.0 FINAL [tekst, tłumaczenie i interpretacja piosenki]

Wykonawca: The Bitcoin Dev Team
Album: The Bitcoin Protocol
Data wydania: 2014-03-19
Gatunek: Rap
Producent: Satoshi Nakamoto

Twórz Groove z nami!
Wyślij okładkę tej piosenki!
Wysyłany plik musi być typu: png lub jpg. Żaden plik nie został wysłany. Dziękujemy za wysłanie okładki.

Tekst piosenki

The Core Developers of Bitcoin released the 0.9.0 FINAL of Bitcoin Core (aka Bitcoin QT)

DOWNLOAD:
Https://bitcoin.org/bin/0.9.0/bitcoin-0.9.0-linux.tar.gz
Https://bitcoin.org/bin/0.9.0/bitcoin-0.9.0-macosx.dmg
Https://bitcoin.org/bin/0.9.0/bitcoin-0.9.0-win.zip
Https://bitcoin.org/bin/0.9.0/bitcoin-0.9.0-win32-setup.exe
Https://bitcoin.org/bin/0.9.0/bitcoin-0.9.0-win64-setup.exe


Code:

15616baea0640277c81a8ca4d3e0d963834b8a7d bitcoin-0.9.0-linux.tar.gz
82b7210587c2037beb5d0b3b9ef2643b7580dfe7 bitcoin-0.9.0-macosx.dmg
5bac25ffc2afa7eaea2bbbd783b787325cf8b537 bitcoin-0.9.0-win.zip
23b315772c86389a8ac05c13bd352f4ec631a659 bitcoin-0.9.0-win32-setup.exe
B404b0ed348be5b15c0704bfdc6b838a732c338e bitcoin-0.9.0-win64-setup.exe


This is a Final Version, but its the same as 0.9.0rc3

Sources:
Https://github.com/bitcoin/bitcoin/releases
Http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.9.0/
Https://bitcoin.org/bin/0.9.0/README.txt


Bitcoin Core version 0.9.0 is now available from:

Https://bitcoin.org/bin/0.9.0/

This is a release candidate for a new major version. A major version brings
Both new features and bug fixes


Please report bugs using the issue tracker at github:

Https://github.com/bitcoin/bitcoin/issues


How to Upgrade
--------------

If you are running an older version, shut it down. Wait until it has completely
Shut down (which might take a few minutes for older versions), uninstall all
Earlier versions of Bitcoin, then run the installer (on Windows) or just copy
Over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux)

If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.0 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine

On Windows, do not forget to uninstall all earlier versions of the Bitcoin
Client first, especially if you are switching to the 64-bit version


Windows 64-bit installer
-------------------------

New in 0.9.0 is the Windows 64-bit version of the client. There have been
Frequent reports of users running out of virtual memory on 32-bit systems
During the initial sync. Because of this it is recommended to install the
64-bit version if your system supports it

NOTE: Release candidate 2 Windows binaries are not code-signed; use PGP
And the SHA256SUMS.asc file to make sure your binaries are correct
In the final 0.9.0 release, Windows setup.exe binaries will be code-signed


OSX 10.5 / 32-bit no longer supported
-------------------------------------

0.9.0 drops support for older Macs. The minimum requirements are now:
* A 64-bit-capable CPU (see http://support.apple.com/kb/ht3696);
* Mac OS 10.6 or later (see https://support.apple.com/kb/ht1633)


Downgrading warnings
--------------------

The 'chainstate' for this release is not always compatible with previous
Releases, so if you run 0.9 and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
Old release (due to 'pruned outputs' being omitted from the index of
Unspent transaction outputs)

Running the old release with the -reindex option will rebuild the chainstate
Data structures and correct the problem

Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
The blockchain for missing spent coins, which will take a long time (tens
Of minutes on a typical machine)


Rebranding to Bitcoin Core
---------------------------

To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we
Have renamed the reference client to Bitcoin Core


Autotools build system
-----------------------

For 0.9.0 we switched to an autotools-based build system instead of individual
(q)makefiles

Using the standard "./autogen.sh; ./configure; make" to build Bitcoin-Qt and
Bitcoind makes it easier for experienced open source developers to contribute
To the project

Be sure to check doc/build-*.md for your platform before building from source


Bitcoin-cli
-------------

Another change in the 0.9 release is moving away from the bitcoind executable
Functioning both as a server and as a RPC client. The RPC client functionality
("tell the running bitcoin daemon to do THIS") was split into a separate
Executable, 'bitcoin-cli'. The RPC client code will eventually be removed from
Bitcoind, but will be kept for backwards compatibility for a release or two


`walletpassphrase` RPC
-----------------------

The behavior of the `walletpassphrase` RPC when the wallet is already unlocked
Has changed between 0.8 and 0.9

The 0.8 behavior of `walletpassphrase` is to fail when the wallet is already unlocked:

> walletpassphrase 1000
Walletunlocktime = now + 1000
> walletpassphrase 10
Error: Wallet is already unlocked (old unlock time stays)

The new behavior of `walletpassphrase` is to set a new unlock time overriding
The old one:

> walletpassphrase 1000
Walletunlocktime = now + 1000
> walletpassphrase 10
Walletunlocktime = now + 10 (overriding the old unlock time)


Transaction malleability-related fixes
--------------------------------------

This release contains a few fixes for transaction ID (TXID) malleability
Issues:

- -nospendzeroconfchange command-line option, to avoid spending
Zero-confirmation change
- IsStandard() transaction rules tightened to prevent relaying and mining of
Mutated transactions
- Additional information in listtransactions/gettransaction output to
Report wallet transactions that conflict with each other because
They spend the same outputs
- Bug fixes to the getbalance/listaccounts RPC commands, which would report
Incorrect balances for double-spent (or mutated) transactions
- New option: -zapwallettxes to rebuild the wallet's transaction information


Transaction Fees
----------------

This release drops the default fee required to relay transactions across the
Network and for miners to consider the transaction in their blocks to
0.01mBTC per kilobyte

Note that getting a transaction relayed across the network does NOT guarantee
That the transaction will be accepted by a miner; by default, miners fill
Their blocks with 50 kilobytes of high-priority transactions, and then with
700 kilobytes of the highest-fee-per-kilobyte transactions

The minimum relay/mining fee-per-kilobyte may be changed with the
Minrelaytxfee option. Note that previous releases incorrectly used
The mintxfee setting to determine which low-priority transactions should
Be considered for inclusion in blocks

The wallet code still uses a default fee for low-priority transactions of
0.1mBTC per kilobyte. During periods of heavy transaction volume, even this
Fee may not be enough to get transactions confirmed quickly; the mintxfee
Option may be used to override the default


0.9.0 Release notes
=======================

1. RPC:

1.1 - New notion of 'conflicted' transactions, reported as confirmations: -1
1.2 - 'listreceivedbyaddress' now provides tx ids
1.3 - Add raw transaction hex to 'gettransaction' output
1.4 - Updated help and tests for 'getreceivedby(account|address)'
1.5 - In 'getblock', accept 2nd 'verbose' parameter, similar to getrawtransaction, but defaulting to 1 for backward compatibility
1.6 - Add 'verifychain', to verify chain database at runtime
1.7 - Add 'dumpwallet' and 'importwallet' RPCs
1.8 - 'keypoolrefill' gains optional size parameter
1.9 - Add 'getbestblockhash', to return tip of best chain
1.10 - Add 'chainwork' (the total work done by all blocks since the genesis block) to 'getblock' output
1.11 - Make RPC password resistant to timing attacks
1.12 - Clarify help messages and add examples
1.13 - Add 'getrawchangeaddress' call for raw transaction change destinations
1.14 - Reject insanely high fees by default in 'sendrawtransaction'
1.15 - Add RPC call 'decodescript' to decode a hex-encoded transaction script
1.16 - Make 'validateaddress' provide redeemScript
1.17 - Add 'getnetworkhashps' to get the calculated network hashrate
1.18 - New RPC 'ping' command to request ping, new 'pingtime' and 'pingwait' fields in 'getpeerinfo' output
1.19 - Adding new 'addrlocal' field to 'getpeerinfo' output
1.20 - Add verbose boolean to 'getrawmempool'
1.21 - Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
1.22 - Explicitly ensure that wallet is unlocked in `importprivkey`
1.23 - Add check for valid keys in `importprivkey`

2. Command-line options:

2.1 - New option: -nospendzeroconfchange to never spend unconfirmed change outputs
2.2 - New option: -zapwallettxes to rebuild the wallet's transaction information
2.3 - Rename option '-tor' to '-onion' to better reflect what it does
2.4 - Add '-disablewallet' mode to let bitcoind run entirely without wallet (when built with wallet)
2.5 - Update default '-rpcsslciphers' to include TLSv1.2
2.6 - make '-logtimestamps' default on and rework help-message
2.7 - RPC client option: '-rpcwait', to wait for server start
2.8 - Remove '-logtodebugger'
2.9 - Allow `-noserver` with bitcoind

3. Block-chain handling and storage:

3.1 - Update leveldb to 1.15
3.2 - Check for correct genesis (prevent cases where a datadir from the wrong network is accidentally loaded)
3.3 - Allow txindex to be removed and add a reindex dialog
3.4 - Log aborted block database rebuilds
3.5 - Store orphan blocks in serialized form, to save memory
3.6 - Limit the number of orphan blocks in memory to 750
3.7 - Fix non-standard disconnected transactions causing mempool orphans
3.8 - Add a new checkpoint at block 279,000

4. Wallet:

4.1 - Bug fixes and new regression tests to correctly compute the balance of wallets containing double-spent (or mutated) transactions
4.2 - Store key creation time. Calculate whole-wallet birthday
4.3 - Optimize rescan to skip blocks prior to birthday
4.4 - Let user select wallet file with -wallet=foo.dat
4.5 - Consider generated coins mature at 101 instead of 120 blocks
4.6 - Improve wallet load time
4.7 - Don't count txins for priority to encourage sweeping
4.8 - Don't create empty transactions when reading a corrupted wallet
4.9 - Fix rescan to start from beginning after importprivkey
4.10 - Only create signatures with low S values

5. Mining:

5.1 - Increase default -blockmaxsize/prioritysize to 750K/50K
5.2 - 'getblocktemplate' does not require a key to create a block template
5.3 - Mining code fee policy now matches relay fee policy

6. Protocol and network:

6.1 - Drop the fee required to relay a transaction to 0.01mBTC per kilobyte
6.2 - Send tx relay flag with version
6.3 - New 'reject' P2P message (BIP 0061, see https://gist.github.com/gavinandresen/7079034 for draft)
6.4 - Dump addresses every 15 minutes instead of 10 seconds
6.5 - Relay OP_RETURN data TxOut as standard transaction type
6.6 - Remove CENT-output free transaction rule when relaying
6.7 - Lower maximum size for free transaction creation
6.8 - Send multiple inv messages if mempool.size > MAX_INV_SZ
6.9 - Split MIN_PROTO_VERSION into INIT_PROTO_VERSION and MIN_PEER_PROTO_VERSION
6.10 - Do not treat fFromMe transaction differently when broadcasting
6.11 - Process received messages one at a time without sleeping between messages
6.12 - Improve logging of failed connections
6.13 - Bump protocol version to 70002
6.14 - Add some additional logging to give extra network insight
6.15 - Added new DNS seed from bitcoinstats.com

7. Validation:

7.1 - Log reason for non-standard transaction rejection
7.2 - Prune provably-unspendable outputs, and adapt consistency check for it
7.3 - Detect any sufficiently long fork and add a warning
7.4 - Call the -alertnotify script when we see a long or invalid fork
7.5 - Fix multi-block reorg transaction resurrection
7.6 - Reject non-canonically-encoded serialization sizes
7.7 - Reject dust amounts during validation
7.8 - Accept nLockTime transactions that finalize in the next block

8. Build system:

8.1 - Switch to autotools-based build system
8.2 - Build without wallet by passing `--disable-wallet` to configure, this removes the BerkeleyDB dependency
8.3 - Upgrade gitian dependencies (libpng, libz, libupnpc, boost, openssl) to more recent versions
8.4 - Windows 64-bit build support
8.5 - Solaris compatibility fixes
8.6 - Check integrity of gitian input source tarballs
8.7 - Enable full GCC Stack-smashing protection for all OSes

9. GUI:

9.1 - Switch to Qt 5.2.0 for Windows build
9.2 - Add payment request (BIP 0070) support
9.3 - Improve options dialog
9.4 - Show transaction fee in new send confirmation dialog
9.5 - Add total balance in overview page
9.6 - Allow user to choose data directory on first start, when data directory ismissing, or when the -choosedatadir option is passed
9.7 - Save and restore window positions
9.8 - Add vout index to transaction id in transactions details dialog
9.9 - Add network traffic graph in debug window
9.10 - Add open URI dialog
9.11 - Add Coin Control Features
9.12 - Improve receive coins workflow: make the 'Receive' tab into a form to request payments, and move historical address list functionality to File menu
9.13 - Rebrand to `Bitcoin Core`
9.14 - Move initialization/shutdown to a thread. This prevents "Not responding" messages during startup. Also show a window during shutdown
9.15 - Don't regenerate autostart link on every client startup
9.16 - Show and store message of normal bitcoin:URI
9.17 - Fix richtext detection hang issue on very old Qt versions
9.18 - OS X: Make use of the 10.8+ user notification center to display Growl-like notifications
9.19 - OS X: Added NSHighResolutionCapable flag to Info.plist for better font rendering on Retina displays
9.20 - OS X: Fix bitcoin-qt startup crash when clicking dock icon
9.21 - Linux: Fix Gnome bitcoin: URI handler

10. Miscellaneous:

10.1 - Add Linux script (contrib/qos/tc.sh) to limit outgoing bandwidth
10.2 - Add '-regtest' mode, similar to testnet but private with instant block generation with 'setgenerate' RPC
10.3 - Add 'linearize.py' script to contrib, for creating bootstrap.dat
10.4 - Add separate bitcoin-cli client

Credits
--------

Thanks to everyone who contributed to this release:

- Andrey
- Ashley Holman
- b6393ce9-d324-4fe1-996b-acf82dbc3d53
- bitsofproof
- Brandon Dahler
- Calvin Tam
- Christian Decker
- Christian von Roques
- Christopher Latham
- Chuck
- coblee
- constantined
- Cory Fields
- Cozz Lovan
- daniel
- Daniel Larimer
- David Hill
- Dmitry Smirnov
- Drak
- Eric Lombrozo
- fanquake
- fcicq
- Florin
- frewil
- Gavin Andresen
- Gregory Maxwell
- gubatron
- Guillermo Céspedes Tabárez
- Haakon Nilsen
- HaltingState
- Han Lin Yap
- harry
- Ian Kelling
- Jeff Garzik
- Johnathan Corgan
- Jonas Schnelli
- Josh Lehan
- Josh Triplett
- Julian Langschaedel
- Kangmo
- Lake Denman
- Luke Dashjr
- Mark Friedenbach
- Matt Corallo
- Michael Bauer
- Michael Ford
- Michagogo
- Midnight Magic
- Mike Hearn
- Nils Schneider
- Noel Tiernan
- Olivier Langlois
- patrick s
- Patrick Strateman
- paveljanik
- Peter Todd
- phantomcircuit
- phelixbtc
- Philip Kaufmann
- Pieter Wuille
- Rav3nPL
- R E Broadley
- regergregregerrge
- Robert Backhaus
- Roman Mindalev
- Rune K. Svendsen
- Ryan Niebur
- Scott Ellis
- Scott Willeke
- Sergey Kazenyuk
- Shawn Wilkinson
- Sined
- sje
- Subo1978
- super3
- Tamas Blummer
- theuni
- Thomas Holenstein
- Timon Rapp
- Timothy Stranex
- Tom Geller
- Torstein Husebø
- Vaclav Vobornik
- vhf / victor felder
- Vinnie Falco
- Warren Togami
- Wil Bown
- Wladimir J. van der Laan


--- numbering added by RegularGuy79 at www.doublecoin.com ---

Just the tip: 1MEmHp8hRmG3F962N6xPWqhe1J4e5ZuUEe

Tłumaczenie piosenki

Nikt nie dodał jeszcze tłumaczenia do tej piosenki. Bądź pierwszy!
Jeśli znasz język na tyle, aby móc swobodnie przetłumaczyć ten tekst, zrób to i dołóż swoją cegiełkę do opisu tej piosenki. Po sprawdzeniu tłumaczenia przez naszych redaktorów, dodamy je jako oficjalne tłumaczenie utworu!

+ Dodaj tłumaczenie

Wyślij Niestety coś poszło nie tak, spróbuj później. Treść tłumaczenia musi być wypełniona.
Dziękujemy za wysłanie tłumaczenia.
Nasi najlepsi redaktorzy przejrzą jego treść, gdy tylko będzie to możliwe. Status swojego tłumaczenia możesz obserwować na stronie swojego profilu.

Interpretacja piosenki

Dziękujemy za wysłanie interpretacji
Nasi najlepsi redaktorzy przejrzą jej treść, gdy tylko będzie to możliwe.
Status swojej interpretacji możesz obserwować na stronie swojego profilu.
Dodaj interpretację
Jeśli wiesz o czym śpiewa wykonawca, potrafisz czytać "między wierszami" i znasz historię tego utworu, możesz dodać interpretację tekstu. Po sprawdzeniu przez naszych redaktorów, dodamy ją jako oficjalną interpretację utworu!

Wyślij Niestety coś poszło nie tak, spróbuj później. Treść interpretacji musi być wypełniona.

Lub dodaj całkowicie nową interpretację - dodaj interpretację
Wyślij Niestety coś poszło nie tak, spróbuj później. Treść poprawki musi być wypełniona. Dziękujemy za wysłanie poprawki.
Najpopularniejsze od The Bitcoin Dev Team
Bitcoin 0.9.0 FINAL
344
{{ like_int }}
Bitcoin 0.9.0 FINAL
The Bitcoin Dev Team
Komentarze
Utwory na albumie The Bitcoin Protocol
Polecane przez Groove
Fortnight
1,8k
{{ like_int }}
Fortnight
Taylor Swift
Chyba że z Tobą
1,3k
{{ like_int }}
Chyba że z Tobą
MODELKI
HILL BOMB
645
{{ like_int }}
HILL BOMB
Guzior
​i like the way you kiss me
10,9k
{{ like_int }}
​i like the way you kiss me
Artemas
Nadziei Słowa
465
{{ like_int }}
Nadziei Słowa
KęKę (PL)
Popularne teksty
Siedem
51,9k
{{ like_int }}
Siedem
Team X
34+35
42,8k
{{ like_int }}
Love Not War (The Tampa Beat)
25,6k
{{ like_int }}
Love Not War (The Tampa Beat)
Jason Derulo
SEKSOHOLIK
163,8k
{{ like_int }}
SEKSOHOLIK
Żabson
Snowman
74,8k
{{ like_int }}
Snowman
Sia