From 96d3df3135d35008d6dc29c0c0dd84326549bbfb Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 2 Jan 2010 22:29:36 +0000 Subject: [PATCH] - Updated Changelog and INSTALL file --- AUTHORS | 1 - Changelog | 1 + INSTALL | 57 ++++++++++++++++++++++++++++++++++++------------------- 3 files changed, 39 insertions(+), 20 deletions(-) diff --git a/AUTHORS b/AUTHORS index df11b15b7..1beb3550d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,7 +6,6 @@ Contributors: * Ishan Arora * Arnaud Demaizière * Grigis Gaëtan -* Frédéric Lassabe Code from other projects: * files src/ico.cpp src/ico.h diff --git a/Changelog b/Changelog index b6e87ec04..9325982a2 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ * Unreleased - Christophe Dumez - v2.1.0 + - FEATURE: Graphical User Interface can be disabled at compilation time (headless running) - FEATURE: Torrents can be labeled/categorized - FEATURE: Labeled torrent can be downloaded corresponding subfolders - FEATURE: Disk cache size can be set from preferences diff --git a/INSTALL b/INSTALL index e1168da55..dcca13dcb 100644 --- a/INSTALL +++ b/INSTALL @@ -1,32 +1,51 @@ qBittorrent - A BitTorrent client in C++ / Qt4 ------------------------------------------ -./configure -make && make install -qbittorrent +1) Compile and install qBittorrent with Qt4 Graphical Interface -will install and execute qBittorrent hopefully without any problems. + $ ./configure + $ make && make install + $ qbittorrent -Dependencies: -- Qt >= 4.4.0 (libqt-devel, libqtgui, libqtcore, libqtnetwork, libqtxml) + will install and execute qBittorrent hopefully without any problems. -- libtorrent-rasterbar by Arvid Norberg (>= 0.14.0 REQUIRED, >= v0.15.0 ADVISED) - -> http://www.qbittorrent.org/download.php (advised) - -> http://www.libtorrent.net - Be careful: another library (the one used by rTorrent) uses a similar name. + Dependencies: + - Qt >= 4.4.0 (libqt-devel, libqtgui, libqtcore, libqtnetwork, libqtxml) -- libboost: libboost-filesystem, libboost-date-time, libboost-thread, libboost-serialization + - libtorrent-rasterbar by Arvid Norberg (>= 0.14.0 REQUIRED, >= v0.15.0 ADVISED) + -> http://www.libtorrent.net + Be careful: another library (the one used by rTorrent) uses a similar name. -- python >= 2.3 (needed by search engine) - * Run time only dependency + - libboost: libboost-filesystem, libboost-date-time, libboost-thread, libboost-serialization -- libnotify >= 0.4.2, glib-2.0 (optional) - * Can be used for system notifications to replace standard Qt notifications - so that it integrates better into the Desktop + - python >= 2.3 (needed by search engine) + * Run time only dependency + + - libnotify >= 0.4.2, glib-2.0 (optional) + * Can be used for system notifications to replace standard Qt notifications + so that it integrates better into the Desktop + + - geoip-database (optional) + * If qBittorrent cannot find this database, it will try to resolve countries using the Internet but it will be a lot slower. + * Run time only dependency + +2) Compile and install qBittorrent without Qt4 Graphical interface + + $ ./configure --disable-gui + $ make && make install + $ qbittorrent + + will install and execute qBittorrent hopefully without any problems. + + Dependencies: + - Qt >= 4.4.0 (libqt-devel, libqtcore, libqtnetwork, libqtxml) + + - libtorrent-rasterbar by Arvid Norberg (>= 0.14.0 REQUIRED, >= v0.15.0 ADVISED) + -> http://www.libtorrent.net + Be careful: another library (the one used by rTorrent) uses a similar name. + + - libboost: libboost-filesystem, libboost-date-time, libboost-thread, libboost-serialization -- geoip-database (optional) - * If qBittorrent cannot find this database, it will try to resolve countries using the Internet but it will be a lot slower. - * Run time only dependency DOCUMENTATION: Please note that there is a documentation with a "compiling howto" at http://wiki.qbittorrent.org.