dash-docs/clients.html
2012-04-10 23:47:16 -04:00

253 lines
6.4 KiB
HTML

---
layout: simple
section: clients
client_info:
- id: name
text: Client
td: th
Bitcoin-Qt: best
- id: start
text: Get Started
- id: audience
text: Audience
Everyone: best
End-users: good
- id: security
text: Wallet Security
Multisig: best
Encryption: good
None: ugly
- id: nodetype
text: Network Security
Full: best
Remote: ugly
- id: backups
text: Backups
One-time local: best
Automatic remote: good
'No': ugly
- id: setuptime
text: Setup Time
Seconds: best
Minutes: good
Hours: ugly
- id: disk
text: Disk Space
2+ GB: ugly
- id: maturity
text: Maturity
Aug 2009: best
May 2011: good
- id: license
text: License
- id: multiuser
text: Multi-user
- id: _os
text: Available For
clients:
- name: Armory
name_uri: http://bitcoinarmory.com/
start_uri: http://bitcoinarmory.com/index.php/get-armory
start: Download
audience: Power users
security: Encryption
nodetype: Addon
backups: One-time local
setuptime: Varies
disk: 2+ GB
maturity: Jul 2011
license: AGPLv3
multiuser: Multi-wallet
os: linux win
- name: Bitcoin Wallet
name_uri: http://code.google.com/p/bitcoin-wallet/
start_uri: https://play.google.com/store/apps/details?id=de.schildbach.wallet
start: Download
audience:
security:
nodetype:
backups:
setuptime:
disk:
maturity: Mar 2011
license: GPLv3
multiuser:
os: android
- name: Bitcoin-Qt
name_uri:
start_uri: http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/
start: Download
audience: End-users
security: Encryption
nodetype: Full
backups: Manual local
setuptime: Hours
disk: 2+ GB
maturity: May 2011
license: MIT
multiuser: 'No'
os: linux mac win
- name: bitcoind
name_uri:
start_uri: http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/
start: Download
audience: Developers
security: Encryption
nodetype: Full
backups: Manual local
setuptime: Hours
disk: 2+ GB
maturity: Aug 2009
license: MIT
multiuser: 'No'
os: linux win
- name: BitcoinSpinner
name_uri: http://code.google.com/p/bitcoinspinner/
start_uri: https://play.google.com/store/apps/details?id=com.miracleas.bitcoin_spinner
start: Download
audience: End-users
security: None
nodetype:
backups: Manual QR-Code
setuptime: Seconds
disk: 2 MB
maturity: Nov 2011
license: Apache2
multiuser: 'No'
os: android
- name: Blockchain
name_uri: https://blockchain.info/wallet/iphone-app
start_uri: https://blockchain.info/wallet/iphone-app#download-instructions-btn
start: Download
audience: End-users
security: Encryption
nodetype: Remote
backups: Automatic remote
setuptime: 15 Minutes
disk: 2 MB
maturity: Mar 2012
license:
multiuser:
os: ios
- name: MtGox Mobile
name_uri: http://mtgoxlive.com/mobile/
start_uri: https://play.google.com/store/apps/details?id=com.mtgoxlive.trader
start: Download
audience: End-users
security: Remote
nodetype: Remote
backups: Automatic remote
setuptime: Minutes
disk: 3 MB
maturity: Jul 2011
license: WTFPL
multiuser: 'No'
os: android
- name: MultiBit
name_uri: http://multibit.org/
start_uri: http://multibit.org/releases.html
start: Download
audience: End-users
security: None
nodetype: Partial
backups: 'No'
setuptime: 1 hour
disk: 50 MB
maturity: Jul 2011
license: MIT
multiuser: Multi-wallet
os: linux mac win
- name: My Wallet
name_uri: https://blockchain.info/wallet
start_uri: https://blockchain.info/wallet/new
start: eWallet
audience: Everyone
security: Encryption
nodetype: Remote
backups: Automatic remote
setuptime: Minutes
disk: None
maturity: Dec 2011
license:
multiuser: 'Yes'
os: android ios linux mac win
- name: StrongCoin
name_uri: https://strongcoin.com/
start_uri: https://strongcoin.com/users/sign_up
start: eWallet
audience: Power users
security: Encryption
nodetype: Remote
backups: Automatic remote
setuptime: Minutes
disk: None
maturity: Sep 2011
license:
multiuser: 'Yes'
os: linux mac win
---
<div class="container">
<section id="clients">
<h1>Bitcoin Clients</h1>
<!-- yes, this is an abuse of tables, but really CSS doesn't provide any sane way to do the same thing :( -->
<table><tr>
<td style="" id="oslist">
<ul>
<li><a id="android" href="javascript:clientfilt('android')"><img src="img/ico-android.png"> Android</a></li>
<li><a id="ios" href="javascript:clientfilt('ios')"><img src="img/ico-ios.png"> iPhone</a></li>
<li><a id="linux" href="javascript:clientfilt('linux')"><img src="img/ico-linux.png"> Linux</a></li>
<li><a id="mac" href="javascript:clientfilt('mac')"><img src="img/ico-mac.png"> Mac OS X</a></li>
<li><a id="win" href="javascript:clientfilt('win')"><img src="img/ico-win.png"> Windows</a></li>
</ul>
</td>
<td>
<table>
{% clients %}
</table>
</td>
</tr></table>
</section>
</div>
<script type="text/javascript">
var visiblerule = null;
var selrule = null;
function clientfilt(c) {
if (visiblerule) {
selrule.selectorText = '#' + c;
visiblerule.selectorText = '.clients.' + c;
return;
}
var ss = document.styleSheets[0];
var rules = ss.cssRules ? ss.cssRules : ss.rules;
if (ss.insertRule) {
ss.insertRule('.clients { display: none }');
ss.insertRule('#' + c + '{ background-color: #bfbfbf }', 0);
ss.insertRule('.clients.' + c + ' { display: table-cell }', 0);
} else {
ss.addRule('.clients', 'display: none');
ss.addRule('#' + c, 'background-color: #bfbfbf', 0);
ss.addRule('.clients.' + c, 'display: table-cell', 0);
}
visiblerule = rules[0];
selrule = rules[1];
}
(function(){
var av = navigator.appVersion;
if (av.indexOf('Android') != -1)
clientfilt('android');
else
if (av.indexOf('iPhone') != -1)
clientfilt('ios');
else
if (av.indexOf('Linux') != -1 || av.indexOf('X11') != -1)
clientfilt('linux');
else
if (av.indexOf('Mac') != -1)
clientfilt('mac');
else
if (av.indexOf('Win') != -1)
clientfilt('win');
})()
</script>