1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-01 03:43:43 +00:00
No description
Find a file
2012-05-30 17:59:52 +00:00
cli
daemon (trunmk libT) #4162 "daemon should reopen logfile on SIGHUP" -- patch from gvdl to reopen the logfile on SIGHUP s.t. log rotation can be used by outside tools 2012-05-30 17:59:52 +00:00
extras point to 'transmission-remote --debug' as a reference for the RPC syntax of various requests 2012-05-30 16:21:43 +00:00
gtk (trunk, gtk) fix #4871 'appindicator does not set its title' w/patch from seb128 2012-04-16 18:42:26 +00:00
libtransmission (trunk libT) fix the Linux build wrt compiling with the new snapshot of libutp checked into r13317 2012-05-30 17:47:29 +00:00
m4
macosx #4924 Use recycleURLs:completionHandler: to trash files 2012-05-29 01:53:36 +00:00
po
qt sync the Qt pref dialog's terminology with the Gtk+ and Web UI's -- 'alternative speed limits' was listed as 'temporary speed limits' 2012-05-09 17:37:14 +00:00
third-party update libutp, fixing #4915 2012-05-27 15:27:59 +00:00
Transmission.xcodeproj silence 2 warnings 2012-05-29 00:53:44 +00:00
utils
web #4739 Webkit notifications for downloading/seeding complete events 2012-05-19 21:37:29 +00:00
.gitignore
AUTHORS Add Danish localization 2012-05-14 11:34:00 +00:00
autogen.sh
ChangeLog
configure.ac bump to 2.52+ 2012-05-19 14:02:25 +00:00
COPYING
Makefile.am
NEWS trivial NEWS tweak 2012-05-19 14:29:19 +00:00
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-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.com/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'