add connection meter
[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! Testing on the testnet is recommended.
7
8 This has been implemented:
9
10 - qmake / QtCreator project (.pro)
11
12 - All dialogs (main GUI, address book, send coins) and menus
13
14 - Taskbar icon/menu
15
16 - GUI only functionality (copy to clipboard, select address, address/transaction filter proxys)
17
18 - Bitcoin core is made compatible with Qt4
19
20 - Send coins dialog: address and input validation
21
22 - Address book and transactions views and models
23
24 - Options dialog
25
26 - Sending coins (including ask for fee when needed)
27
28 - Show error messages from core
29
30 - Show details dialog for transactions (on double click)
31
32 This has to be done:
33
34 - Integrate with main bitcoin tree
35
36 - Start at system start
37
38 - Internationalization (convert WX language files)
39
40 - Build on Windows
41
42 Build instructions
43 ===================
44
45 First, make sure that the required packages for Qt4 development of your
46 distribution are installed, for Debian and Ubuntu these are:
47
48 ::
49
50     apt-get install qt4-qmake libqt4-dev
51
52 then execute the following:
53
54 ::
55
56     qmake
57     make
58
59 Alternatively, install Qt Creator and open the `bitcoin-qt.pro` file.
60
61 An executable named `bitcoin-qt` will be built.
62
63 Berkely DB version warning
64 ==========================
65
66 A warning for people using the *static binary* version of Bitcoin (tl;dr: **Berkely DB databases are not forward compatible**).
67
68 The static binary version of Bitcoin is linked against libdb4.7 or libdb4.8 (see also `this Debian issue`_).
69
70 Now the nasty thing is that databases from 5.X are not compatible with 4.X. 
71
72 If the globally installed development package of Berkely DB installed on your system is 5.X, any source you
73 build yourself will be linked against that. The first time you run with a 5.X version the database will be upgraded, 
74 and 4.X cannot open the new format. This means that you cannot go back to the old statically linked version without
75 significant hassle!
76
77 .. _`this Debian issue`: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621425