Go to file
Mitchell Livingston cd9f885417 perhaps avoid a rare crash when removing transfers 2008-05-10 15:23:36 +00:00
Transmission.xcodeproj make the "group = none" image an empty box 2008-05-09 15:17:30 +00:00
beos
cli fix cli compile issue reported & patched by mdomsch 2008-05-06 16:32:45 +00:00
daemon #923: daemon should use tr_initFull() 2008-05-08 19:34:12 +00:00
doc (very) rough draft of the new ipc protocol 2008-05-10 14:29:59 +00:00
gtk (gtk) #927: "help" button in the preferences dialog 2008-05-09 03:20:34 +00:00
libtransmission new utility for iterating through torrents: tr_torrentNext() 2008-05-10 00:19:00 +00:00
m4
macosx perhaps avoid a rare crash when removing transfers 2008-05-10 15:23:36 +00:00
misc
po (gtk) Update translations from Launchpad. New Languages: Arabic, Czech, Danish, Persian, Seanan, Japanese, Georgian, Macedonian, Maltese, Norwegian Nynorsk, Slovenian, and Traditional Chinese. Updated Languages: Brazilian Portuguese, Spanish, Hungarian, Slovakian, Romanian, Russian, Norwegian, Greek, Galician, French, Dutch, Polish, Thai, Italian, Lithuanian, Portuguese, Catalan, Turkish, Bulgarian, Swedish, German, Hebrew, Finnish, Chinese 2008-05-08 19:20:04 +00:00
third-party update to the miniupnpc-20080427 snapshot 2008-05-04 22:09:33 +00:00
wx
.gitignore
AUTHORS (trunk) Traditional Chinese localization 2008-04-01 01:33:39 +00:00
ChangeLog
LICENSE
Makefile.am
NEWS update version to 1.20 2008-05-09 18:49:37 +00:00
README
appcast.xml update appcast 2008-05-09 18:55:38 +00:00
autogen.sh #701: Run configure at the end of autogen.sh 2008-04-12 23:24:30 +00:00
configure.ac update trunk to 1.20+ 2008-05-09 19:03:41 +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