Go to file
Charles Kerr 5d72e8b7f7 (trunk gtk) futz with the preferences dialog layout & terminology a little bit. steal a little back from qBittorrent. 2010-12-11 18:49:59 +00:00
Transmission.xcodeproj add extra IBOutlets to the preferences 2010-11-22 00:03:57 +00:00
cli (trunk cli) #3758 "Syntax error in transmission-cli.1" -- patch from naddy 2010-11-21 15:41:05 +00:00
daemon (trunk daemon) #3324 "'transmission-remote --add' has no output/status messages" -- fixed. 2010-10-16 16:08:40 +00:00
extras #3740 The session argument cache-size-mb is documented as cache-size 2010-11-14 18:14:59 +00:00
gtk (trunk gtk) futz with the preferences dialog layout & terminology a little bit. steal a little back from qBittorrent. 2010-12-11 18:49:59 +00:00
libtransmission (trunk) #3817 "use the OS' proxy support" -- implemented for libtransmission, transmission-gtk 2010-12-10 18:51:05 +00:00
m4
macosx remove some glue code 2010-12-09 23:34:44 +00:00
po (trunk gtk) Update translations + Add two new translations (Bengali and Urdu) 2010-12-09 19:26:56 +00:00
qt (trunk qt) #2050 "properties dialog changes seem to undo themselves" -- fixed. 2010-12-08 16:23:21 +00:00
third-party update to miniupnpc-1.4.20101209 2010-12-10 04:07:30 +00:00
utils (trunk libT) #3712 "transmission-show's file list should be sorted alphabetically" -- done. 2010-11-03 16:59:24 +00:00
web #3785 (web) "Webui image tb_backgrounds_highlight.png missing from Makefile.am" -- fixed. 2010-12-02 16:13:53 +00:00
.gitignore ignore miniupnpcstring.h when submitting 2009-07-14 00:21:37 +00:00
AUTHORS update AUTHORS and Credits with my LLC info 2010-11-02 01:07:48 +00:00
COPYING small tweaks 2010-02-16 03:29:31 +00:00
ChangeLog
Makefile.am (trunk) rename "doc" as "extras", and add transmission-1920.jpg there 2010-08-02 02:49:52 +00:00
NEWS tweak NEWS some more 2010-12-09 20:09:49 +00:00
README (trunk) #3715 "README file is outdated" -- commit patch from delarius. 2010-11-05 19:41:41 +00:00
autogen.sh remove the '--enable-maintainer-mode' arguments in autogen.sh 2010-11-25 01:06:59 +00:00
configure.ac bump to 2.13+ 2010-12-09 20:40:41 +00:00
transmission-gtk.spec.in (trunk gtk) #3762 "errors in rpm spec file" -- apply fixes from knnniggett 2010-11-22 12:50:42 +00:00
uncrustify.cfg
update-version-h.sh change 'v' field in dht to use major/minor version instead of svn revision 2010-10-13 17:09:05 +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-2.11.tar.xz | tar xf -
    $ cd transmission-2.11
    $ ./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.transmissionbt.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'