Go to file
Kevin Glowacz 037777968d (trunk web) make sure the Download Directory field in the Inspector is N/A when no torrents are selected 2010-01-15 04:34:42 +00:00
Transmission.xcodeproj remove Turkish localization - the translator is MIA 2010-01-11 14:23:46 +00:00
cli (trunk libT) sync the tr_wait_msec() calls in daemon/ and cli/ 2010-01-01 22:40:54 +00:00
daemon (trunk) add a log message telling the user which configDir is being used and whether or not its settings.json was used 2010-01-12 16:43:37 +00:00
doc add to RPC info for peers from DHT and LTEP 2010-01-14 00:25:03 +00:00
gtk (trunk gtk) HIG: reorganize the menu items in the tray icon 2010-01-14 07:03:29 +00:00
libtransmission (trunk libT) remove the r9933 assertions and maybe fix Yada's bug 2010-01-15 00:20:48 +00:00
m4 remove unused m4 macros, as pointed out by stdisease 2009-06-03 15:22:09 +00:00
macosx (trunk) add tr_torrent_stat.id to RPC documentation. Rename tr_tracker_stat.identifier as tr_tracker_stat.id for consistency with tr_torrent.id 2010-01-13 22:40:07 +00:00
po (trunk gtk) sync GTK+ client translations from https://translations.launchpad.net/transmission/trunk/+pots/transmission 2010-01-13 01:06:34 +00:00
qt (trunk) one of the less-interesting commits in a while: remove trailing spaces from lines 2010-01-05 23:47:50 +00:00
third-party (trunk libT) #2416 "crash in event_queue_insert" -- I think this is happening if we queue up two changes, one to listen for read/write, and then a second one to delete the polling, in kqueue's event mechanism, at libcurl's request. Let's try disabling kqueue in libevent and use poll/select instead. 2010-01-10 19:52:01 +00:00
web (trunk web) make sure the Download Directory field in the Inspector is N/A when no torrents are selected 2010-01-15 04:34:42 +00:00
.gitignore ignore miniupnpcstring.h when submitting 2009-07-14 00:21:37 +00:00
AUTHORS remove Turkish localization - the translator is MIA 2010-01-11 14:23:46 +00:00
COPYING (trunk) add an explicit waiver <http://people.debian.org/~bap/dfsg-faq#waiver> for linking with OpenSSL 2009-06-04 19:12:11 +00:00
ChangeLog
Makefile.am (trunk libT) fix r9793 oops -- I didn't mean to commit my local changes to the autoconf code 2009-12-16 18:23:09 +00:00
NEWS (trunk) update NEWS 2010-01-11 16:11:28 +00:00
README (trunk) housekeeping: (1) add standard svn properties for $Id$ substitution in some files (2) add #include guards in a couple of libtransmission headers (3) refresh build instructions in README 2010-01-14 14:20:49 +00:00
autogen.sh (trunk) #2553: autogen failure: "aclocal: couldn't open directory `m4': No such file or directory" 2009-11-04 03:14:35 +00:00
configure.ac (trunk) try to help packagers a bit by adding annotation to say which prerequisites are mandatory and which are optional 2010-01-13 22:32:46 +00:00
transmission.spec.in (trunk) try to help packagers a bit by adding annotation to say which prerequisites are mandatory and which are optional 2010-01-13 22:32:46 +00:00
uncrustify.cfg
update-version-h.sh #2278 configure.ac: remove AC_DEFINEs of TR_*_RELEASE 2009-07-15 00:42:22 +00:00

README

ABOUT

  Transmission is a fast, easy, and free BitTorrent client.
  It comes in several flavors:

    * A native Mac OS X GUI application
    * GTK+ and Qt GUI applications for Linux, BSD, etc.
    * A headless daemon for servers and routers
    * A web UI for remote controlling any of the above

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

BUILDING

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

  For a more detailed description, and dependancies, visit:
  http://trac.transmissionbt.com/wiki/

  Building a Transmission release from the command line:

    $ xz -d -c transmission-1.80.tar.xz | tar xf -
    $ cd transmission-1.80
    $ ./configure
    $ make
    $ sudo make install

  Building Transmission from the nightly builds:

    Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/
    and follow the steps from the previous section.

    If you're new to building programs from source code, this is typically 
    easier than building from SVN.

  Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ make
    $ sudo make install

  Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ ./update-version-h.sh 
    $ make
    $ sudo make install

  Notes for building on Solaris' C compiler:  User av reports success with
  this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt'