Go to file
Mitchell Livingston 5df49d03c9 improve the drawing of the background color in file selection 2007-10-11 03:52:35 +00:00
Transmission.xcodeproj improve Activity icon and display the tab name in the inspector's title 2007-10-10 02:35:16 +00:00
beos Oops, remove extra paren. 2007-08-05 04:04:04 +00:00
cli add tr_stat.peersKnown to indicate how many peers exist in the peer `pool' 2007-10-01 15:51:54 +00:00
daemon add bsdqueue.h to daemon dir 2007-09-25 23:59:50 +00:00
doc update ltep documentation 2007-09-29 23:58:37 +00:00
gtk more piddly tweaks: more consistency between text in the buttons and tooltips 2007-10-10 19:47:55 +00:00
libtransmission add more debugging messages to track down why we're disconnecting from some peers 2007-10-11 03:36:09 +00:00
m4 * add intltool macros to make it easier to build from svn. 2007-10-09 02:49:24 +00:00
macosx improve the drawing of the background color in file selection 2007-10-11 03:52:35 +00:00
misc Doc update. 2007-08-16 04:22:34 +00:00
mk fix version.sh 2007-09-20 16:37:11 +00:00
po make the gtk translation files play nicely with autoconf 2007-10-08 15:37:33 +00:00
third-party add a NULL "install:" target for third-party libraries so they don't get forced on other programs via "make install" 2007-10-08 15:54:07 +00:00
wx modify the tr_stat struct as hashed out by charles_ and BentMyWookie. sync gtk, ipc, and wx clients. 2007-09-26 01:55:04 +00:00
.gitignore make the gtk translation files play nicely with autoconf 2007-10-08 15:37:33 +00:00
AUTHORS minor tweaks: (1) list `None' instead of `0 b' for zero bytes, such as in UL speed or the "corrupted" field. (2) the properties icon is too horrible to keep -- use `torrent details' instead. (3) list active maintainers first in credits. (4) tweak the "about" dialog's client description a bit to better match the style of other gtk+ apps. 2007-10-10 18:52:08 +00:00
ChangeLog required files 2007-07-18 23:13:30 +00:00
LICENSE add copyright info to LICENSE 2007-09-10 03:15:13 +00:00
Makefile.am fix the `transmission.desktop' errors reported by jinzo and Lacrocivious 2007-10-09 18:28:14 +00:00
NEWS improve the drawing of the background color in file selection 2007-10-11 03:52:35 +00:00
README modify the tr_stat struct as hashed out by charles_ and BentMyWookie. sync gtk, ipc, and wx clients. 2007-09-26 01:55:04 +00:00
appcast.xml correct appcast urls 2007-10-07 04:48:16 +00:00
autogen.sh make the gtk translation files play nicely with autoconf 2007-10-08 15:37:33 +00:00
configure.ac * add intltool macros to make it easier to build from svn. 2007-10-09 02:49:24 +00:00
transmission.spec.in get mac build compiling again 2007-07-19 01:21:13 +00:00

README

README for Transmission
=======================

Transmission is a free, lightweight BitTorrent client. It features a
simple, intuitive interface on top of an efficient, cross-platform
back-end.

Transmission runs on Mac OS X (Cocoa interface),
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface)
and BeOS (native interface).

For more information (including build instructions),
please consult the website: http://transmission.m0k.org/


Building Transmission
=====================

Transmission has an Xcode project file (Transmission.xcodeproj)
that allows it to be built in Xcode.

Building a Transmission release from the command line:

    $ tar xvfz Transmission-80.tar.gz
    $ cd Transmission-0.80
    $ ./configure -q && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ ./configure -q && make -s

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ svn up
    $ make -s