Go to file
Charles Kerr dceabc5661 make tr_stat identical in transmission.h and rpc-spec.txt. 2008-05-22 16:59:51 +00:00
Transmission.xcodeproj quicklook window expands from the icon instead of the whole table row 2008-05-21 22:09:05 +00:00
beos rename tr_torrentClose() as tr_torrentFree() and make it private. change client code to use tr_torrentRemove() instead. This fixes the confusion between the two methods that led to #954 2008-05-21 17:14:58 +00:00
cli more janitorial cleanup on the "tr_session*" namespace. Today's victim: tr_handle_status. 2008-05-22 12:31:47 +00:00
daemon (#954) rpc: add "torrent-remove" method. rename tr_torrentDelete() as tr_torrentRemove() for consistency with various parts of the code. 2008-05-20 23:58:59 +00:00
doc make tr_stat identical in transmission.h and rpc-spec.txt. 2008-05-22 16:59:51 +00:00
gtk rename tr_torrentClose() as tr_torrentFree() and make it private. change client code to use tr_torrentRemove() instead. This fixes the confusion between the two methods that led to #954 2008-05-21 17:14:58 +00:00
libtransmission make tr_stat identical in transmission.h and rpc-spec.txt. 2008-05-22 16:59:51 +00:00
m4
macosx make tr_stat identical in transmission.h and rpc-spec.txt. 2008-05-22 16:59: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 rename tr_torrentClose() as tr_torrentFree() and make it private. change client code to use tr_torrentRemove() instead. This fixes the confusion between the two methods that led to #954 2008-05-21 17:14:58 +00:00
.gitignore
AUTHORS
ChangeLog
LICENSE
Makefile.am (rpc) ensure "doc/rpc-spec.txt" is added to the tarball 2008-05-21 14:31:43 +00:00
NEWS (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
README
appcast.xml (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
autogen.sh
configure.ac (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
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