Go to file
Charles Kerr 66650a2b62 (trunk utils) #3302 "Scraping with transmission-show grabs /scrape without any GET parameters" -- fixed in trunk for 2.10. Thanks LolCol 2010-06-17 02:49:39 +00:00
Transmission.xcodeproj remove zh_CH files from Xcode and update Makefile for missing localizations 2010-06-16 01:18:18 +00:00
cli (trunk) #2983: add command-line utilities for creating .torrent files, for editing passkeys, for adding/removing trackers, etc. 2010-06-16 14:27:24 +00:00
daemon (trunk) #2983: add command-line utilities for creating .torrent files, for editing passkeys, for adding/removing trackers, etc. 2010-06-16 14:27:24 +00:00
doc updated "added.f" documentation based on alus' post @ http://forum.bittorrent.org/viewtopic.php?pid=1024#p1024 2010-05-29 19:02:35 +00:00
gtk (trunk gtk) #3295 "transmission updates the blocklist even when the blocklist is disabled" -- fixed in trunk for 2.00 2010-06-15 15:35:40 +00:00
libtransmission (trunk) #2983: add command-line utilities for creating .torrent files, for editing passkeys, for adding/removing trackers, etc. 2010-06-16 14:27:24 +00:00
m4
macosx whoops 2010-06-16 03:35:31 +00:00
po (trunk gtk) sync the translations from rosetta again 2010-06-16 00:47:13 +00:00
qt (qt) fix oversight in r10771 2010-06-16 06:34:45 +00:00
third-party missed one 2010-06-09 23:22:10 +00:00
utils (trunk utils) #3302 "Scraping with transmission-show grabs /scrape without any GET parameters" -- fixed in trunk for 2.10. Thanks LolCol 2010-06-17 02:49:39 +00:00
web (web) #3296: Deleting a torrent hidden in the webui corrupts the row model 2010-06-16 03:04:40 +00:00
.gitignore
AUTHORS (trunk) fix Sérgio Miranda's name 2010-06-16 15:14:16 +00:00
COPYING
ChangeLog
Makefile.am (trunk) #2983: add command-line utilities for creating .torrent files, for editing passkeys, for adding/removing trackers, etc. 2010-06-16 14:27:24 +00:00
NEWS update NEW's 2.00 release date 2010-06-16 00:59:07 +00:00
README
autogen.sh
configure.ac (trunk) #2983: add command-line utilities for creating .torrent files, for editing passkeys, for adding/removing trackers, etc. 2010-06-16 14:27:24 +00:00
transmission.spec.in
uncrustify.cfg
update-version-h.sh

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'