Go to file
Charles Kerr 59bcac8fe1 (gtk) #970: The help dialog's link to transmissionbt.com should be clickable 2008-05-25 13:22:14 +00:00
Transmission.xcodeproj manually draw the alternating row colors in the tracker table as well 2008-05-23 19:31:57 +00:00
beos (libt) more janitorial work on cleaning up tr_session*() and tr_torrent*() functions: session stats, torrent count, and manual update. 2008-05-22 20:44:41 +00:00
cli (libt) more janitorial work on cleaning up tr_session*() and tr_torrent*() functions: session stats, torrent count, and manual update. 2008-05-22 20:44:41 +00:00
daemon (rpc) 2008-05-24 18:22:16 +00:00
doc add `hashString' to torrent-stat's response 2008-05-23 13:18:17 +00:00
gtk (gtk) #970: The help dialog's link to transmissionbt.com should be clickable 2008-05-25 13:22:14 +00:00
libtransmission (rpc) 2008-05-24 18:22:16 +00:00
m4
macosx attempt to fix "0 times" stats bug 2008-05-24 23:51:51 +00:00
misc
po RPC/IPC redesign 2008-05-18 16:44:30 +00:00
third-party RPC/IPC redesign 2008-05-18 16:44:30 +00:00
wx (libt) more janitorial work on cleaning up tr_session*() and tr_torrent*() functions: session stats, torrent count, and manual update. 2008-05-22 20:44:41 +00:00
.gitignore
AUTHORS (trunk) Traditional Chinese localization 2008-04-01 01:33:39 +00:00
ChangeLog
LICENSE
Makefile.am (rpc) ensure "doc/rpc-spec.txt" is added to the tarball 2008-05-21 14:31:43 +00:00
NEWS (gtk) #942: Option to inhibit / allow hibernation 2008-05-24 23:23:20 +00:00
README
appcast.xml (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
autogen.sh #701: Run configure at the end of autogen.sh 2008-04-12 23:24:30 +00:00
configure.ac (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
transmission.spec.in sync the spec file up with the curl requirements 2008-04-24 12:02:15 +00:00

README

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

Transmission is a fast, easy, and free BitTorrent client.

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

Visit http://www.transmissionbt.com/ for more information.


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

Transmission has an Xcode project file (Transmission.xcodeproj)
for building in Xcode.

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.0.tar.bz2
    $ cd transmission-1.0
    $ ./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