Show unconfirmed balance on overview page
[novacoin.git] / README.rst
1 Bitcoin-qt: Qt4 based GUI replacement for Bitcoin
2 =================================================
3
4 **Warning** **Warning** **Warning**
5
6 Pre-alpha stuff! I'm using this client myself on the production network, and I haven't noticed any glitches, but remember: always backup your wallet.
7 Testing on the testnet is recommended.
8
9 This has been implemented:
10
11 - qmake / QtCreator project (.pro)
12
13 - Compatibility with Linux (both GNOME and KDE), MacOSX and Windows
14
15 - All functionality of the original client, including taskbar icon/menu
16
17 - Tabbed interface
18
19 - Overview page with current balance, unconfirmed balance, etc
20
21 - User friendly transaction list with status icons, real-time filtering and a context menu that allows editing and copying labels
22
23 - Asks for confirmation before sending coins
24
25 - CSV export of transactions and address book
26
27 - Shows alternative icon when connected to testnet
28
29 - Progress bar on initial block download
30
31 This has to be done:
32
33 - Start at system start
34
35 - Internationalization (convert WX language files)
36
37
38 Build instructions 
39 ===================
40
41 Debian
42 -------
43
44 First, make sure that the required packages for Qt4 development of your
45 distribution are installed, for Debian and Ubuntu these are:
46
47 ::
48
49     apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
50         libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
51         libssl-dev libdb4.8++-dev
52
53 then execute the following:
54
55 ::
56
57     qmake
58     make
59
60 Alternatively, install Qt Creator and open the `bitcoin-qt.pro` file.
61
62 An executable named `bitcoin-qt` will be built.
63
64
65 Windows
66 --------
67
68 Windows build instructions:
69
70 - Download the `QT Windows SDK`_ and install it. You don't need the Symbian stuff, just the desktop Qt.
71
72 - Download and extract the `dependencies archive`_  [#]_, or compile openssl, boost and dbcxx yourself.
73
74 - Copy the contents of the folder "deps" to "X:\QtSDK\mingw", replace X:\ with the location where you installed the Qt SDK. Make sure that the contents of "deps/include" end up in the current "include" directory and such.
75
76 - Open the .pro file in QT creator and build as normal (ctrl-B)
77
78 .. _`QT Windows SDK`: http://qt.nokia.com/downloads/sdk-windows-cpp
79 .. _`dependencies archive`: http://download.visucore.com/bitcoin/qtgui_deps_1.zip
80 .. [#] PGP signature: http://download.visucore.com/bitcoin/qtgui_deps_1.zip.sig (signed with RSA key ID `610945D0`_)
81 .. _`610945D0`: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x610945D0
82
83 Berkely DB version warning
84 ==========================
85
86 A warning for people using the *static binary* version of Bitcoin on a Linux/UNIX-ish system (tl;dr: **Berkely DB databases are not forward compatible**).
87
88 The static binary version of Bitcoin is linked against libdb4.7 or libdb4.8 (see also `this Debian issue`_).
89
90 Now the nasty thing is that databases from 5.X are not compatible with 4.X. 
91
92 If the globally installed development package of Berkely DB installed on your system is 5.X, any source you
93 build yourself will be linked against that. The first time you run with a 5.X version the database will be upgraded, 
94 and 4.X cannot open the new format. This means that you cannot go back to the old statically linked version without
95 significant hassle!
96
97 .. _`this Debian issue`: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621425