-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some help text, and bumped version numbers. Added a Readable Index for /Contrib Fixing /Contrib Index URLs Revert Version Numbers.
- Loading branch information
Showing
6 changed files
with
67 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Contrib Index | ||
--------------------- | ||
|
||
### [Debian](/contrib/debian) ### | ||
Contains files used to package bitcoind/bitcoin-qt | ||
for Debian-based Linux systems. If you compile bitcoind/bitcoin-qt yourself, there are some useful files here. | ||
|
||
### [Gitian-descriptors](/contrib/gitian-descriptors) ### | ||
Gavin's notes on getting gitian builds up and running using KVM. | ||
|
||
### [Gitian-downloader](/contrib/gitian-downloader) | ||
Various PGP files of core developers. | ||
|
||
### [Macdeploy](/contrib/macdeploy) ### | ||
Scripts and notes for Mac builds. | ||
|
||
### [PyMiner](/contrib/pyminer) ### | ||
|
||
This is a 'getwork' CPU mining client for Bitcoin. It is pure-python, and therefore very, very slow. The purpose is to provide a reference implementation of a miner, for study. | ||
|
||
### [Qos](/contrib/qos) ### | ||
|
||
A Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it. | ||
|
||
### [Seeds](/contrib/seeds) ### | ||
Utility to generate the pnSeed[] array that is compiled into the client. | ||
|
||
### [SpendFrom](/contrib/spendfrom) ### | ||
|
||
Use the raw transactions API to send coins received on a particular | ||
address (or addresses). | ||
|
||
### [TestGen](/contrib/testgen) ### | ||
Utilities to generate test vectors for the data-driven Bitcoin tests. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
Debian | ||
==================== | ||
This directory contains files used to package bitcoind/bitcoin-qt | ||
for Debian-based Linux systems. If you compile bitcoind/bitcoin-qt yourself, there are some useful files here. | ||
|
||
## bitcoin: URI support ## | ||
|
||
|
||
bitcoin-qt.desktop (Gnome / Open Desktop) | ||
To install: | ||
|
||
sudo desktop-file-install bitcoin-qt.desktop | ||
sudo update-desktop-database | ||
|
||
If you build yourself, you will either need to modify the paths in | ||
the .desktop file or copy or symlink your bitcoin-qt binary to `/usr/bin` | ||
and the `../../share/pixmaps/bitcoin128.png` to `/usr/share/pixmaps` | ||
|
||
bitcoin-qt.protocol (KDE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Utilities to generate test vectors for the data-driven Bitcoin tests | ||
Utilities to generate test vectors for the data-driven Bitcoin tests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,15 @@ Bitcoin 0.8.2 BETA | |
|
||
Copyright (c) 2009-2013 Bitcoin Developers | ||
|
||
License | ||
--------------------- | ||
Distributed under the [MIT/X11 software license](http://www.opensource.org/licenses/mit-license.php). | ||
This product includes software developed by the OpenSSL Project for use in the [OpenSSL Toolkit](http://www.openssl.org/). This product includes | ||
cryptographic software written by Eric Young ([[email protected]](mailto:[email protected])), and UPnP software written by Thomas Bernard. | ||
|
||
|
||
Intro | ||
--------------------- | ||
Bitcoin is a free open source peer-to-peer electronic cash system that is | ||
completely decentralized, without the need for a central server or trusted | ||
parties. Users hold the crypto keys to their own money and transact directly | ||
with each other, with the help of a P2P network to check for double-spending. | ||
|
||
|
||
Setup | ||
--------------------- | ||
[Bitcoin-Qt](http://bitcoin.org/en/download) is the original Bitcoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Bitcoin transactions; depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. | ||
[Bitcoin-Qt](http://bitcoin.org/en/download) is the original Bitcoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Bitcoin transactions (which is currently several GBs); depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. | ||
|
||
### Unix | ||
|
||
|
@@ -44,17 +37,21 @@ Unpack the files into a directory and run bitcoin-qt.exe. | |
* See the documentation at the [Bitcoin Wiki](https://en.bitcoin.it/wiki/Main_Page) | ||
for help and more information. | ||
* Ask for help on [#bitcoin](http://webchat.freenode.net?channels=bitcoin) on Freenode. If you don't have an IRC client use [webchat here](http://webchat.freenode.net?channels=bitcoin). | ||
* Ask for help on the [BitcoinTalk](https://bitcointalk.org/) forums. | ||
* Ask for help on the [BitcoinTalk](https://bitcointalk.org/) forums, in the [technical support board](https://bitcointalk.org/index.php?board=4.0). | ||
|
||
Building | ||
--------------------- | ||
The following are developer notes on how to build Bitcoin on your native platform. They are not complete guide, but include notes on the necessary libraries, compile flags, etc. | ||
|
||
- [Bitcoin-Qt Readme](readme-qt.md) | ||
- [OSX Build Notes](build-osx.md) | ||
- [Unix Build Notes](build-unix.md) | ||
- [Windows Build Notes](build-msw.md) | ||
|
||
Development | ||
--------------------- | ||
The Bitcoin repo's [root README](https://github.com/bitcoin/bitcoin/blob/master/README.md) contains relevant information on the development process and automated testing. | ||
|
||
- [Coding Guidelines](coding.md) | ||
- [Multiwallet Qt Development](multiwallet-qt.md) | ||
- [Release Notes](release-notes.md) | ||
|