Go to file
Charles Kerr 44fdf34678 (gtk) rough draft of the preferences dialog's "Remote Access" tab: enable/disable RPC, port, ACL, password, and password toggle 2008-06-02 21:02:38 +00:00
Transmission.xcodeproj potential decrease in memory usage when showing the group dividers 2008-05-31 02:38:44 +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 #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 (rpc) better debugging messages in transmission-remote 2008-05-27 21:47:07 +00:00
doc add `hashString' to torrent-stat's response 2008-05-23 13:18:17 +00:00
gtk (gtk) rough draft of the preferences dialog's "Remote Access" tab: enable/disable RPC, port, ACL, password, and password toggle 2008-06-02 21:02:38 +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 update NEWS and mac strings 2008-06-02 20:31:26 +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 #972: Update to the 2008/05/29 snapshot of libnatpmp 2008-05-29 13:39:39 +00:00
wx API cleanup: s/tr_torrentRates/tr_sessionGetSpeed/ 2008-05-30 15:19:07 +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 update NEWS and mac strings 2008-06-02 20:31:26 +00:00
README
appcast.xml (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
autogen.sh autogen.sh cleanups by Triskelios 2008-05-27 21:49:09 +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