1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-05 02:58:33 +00:00
No description
Find a file
2010-09-12 22:20:19 +00:00
cli
daemon (trunk daemon) : "regression: wrong speed display in transission-remote and web ui" -- apply KyleK's patch for transmission-remote 2010-09-12 19:35:53 +00:00
extras (trunk) revert the RPC behavior of rateUpload, rateDownload, rateToClient, and rateToPeer as discussed with Longinus00 2010-09-03 04:30:43 +00:00
gtk remove sort-by-tracker from the GTK+ client 2010-09-06 00:23:44 +00:00
libtransmission fix a display issue with the idle time for a split second after the transfer starts, since the transfer would be marked as downloading but would not yet have a start time 2010-09-12 19:49:06 +00:00
m4
macosx Snow Leopard systems should show file sizes and speeds in base 10 2010-09-12 22:20:19 +00:00
po
qt (qt) missing colon in progresString 2010-09-08 01:09:52 +00:00
third-party
Transmission.xcodeproj
utils
web (trunk, web) we were appending lots and lots of strings. instead, use array.join() 2010-09-12 02:07:43 +00:00
.gitignore
AUTHORS
autogen.sh
ChangeLog
configure.ac
COPYING
Makefile.am
NEWS
README
transmission-gtk.spec.in
uncrustify.cfg
update-version-h.sh

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'