Go to file
Charles Kerr ccaf782dd6 (libT) if the ACL passed in via tr_sessionInitFull() can't be parsed, log an tr_err() and use a TR_DEFAULT_RPC_ACL as the fallback. 2008-06-02 19:57:16 +00:00
Transmission.xcodeproj potential decrease in memory usage when showing the group dividers 2008-05-31 02:38:44 +00:00
beos
cli #224 (creating multi-tracker torrents): add multitracker support in libT's makemeta API, and in the gtk+ interface. This probably breaks the mac build... 2008-06-01 05:36:23 +00:00
daemon
doc
gtk (gtk) when editing the tracker list of an existing torrent, don't let the user delete the last tracker. 2008-06-02 17:44:26 +00:00
libtransmission (libT) if the ACL passed in via tr_sessionInitFull() can't be parsed, log an tr_err() and use a TR_DEFAULT_RPC_ACL as the fallback. 2008-06-02 19:57:16 +00:00
m4
macosx for now don't allow modification of non-user added trackers 2008-06-02 19:42:14 +00:00
misc
po add gtk/tracker-list.c to the list of translatable files 2008-06-01 05:45:40 +00:00
third-party
wx API cleanup: s/tr_torrentRates/tr_sessionGetSpeed/ 2008-05-30 15:19:07 +00:00
.gitignore
AUTHORS
ChangeLog required files 2007-07-18 23:13:30 +00:00
LICENSE
Makefile.am
NEWS
README
appcast.xml
autogen.sh
configure.ac
transmission.spec.in

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