1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-03 21:12:05 +00:00
No description
Find a file
Mitchell Livingston bfbab6d523 update NEWS
2009-03-05 22:32:43 +00:00
cli
daemon (trunk) #1881: promote tr_strratio() to libtransmission, so that its code doesn't have to be repeated in all the clients 2009-03-04 16:16:02 +00:00
doc (trunk) libT and gtk+ parts for #1889: per-torrent vs. global speed limit confusion 2009-03-04 19:52:57 +00:00
gtk (trunk gtk) minor tweaks 2009-03-05 17:18:36 +00:00
libtransmission (trunk) libT and gtk+ parts for #1889: per-torrent vs. global speed limit confusion 2009-03-04 19:52:57 +00:00
m4
macosx #1881: Displayed ratio should be truncated, not rounded (Mac) 2009-03-05 04:59:24 +00:00
misc
po (trunk gtk) fix .po breakage 2009-02-26 19:19:23 +00:00
third-party (trunk daemon) another experiment: implement the watchdir with opendir() and readdir(), since those are available on every system we're on, even embedded ones... 2009-02-28 15:27:39 +00:00
Transmission.xcodeproj a little cleanup of the project file 2009-03-02 03:49:50 +00:00
web #1817 Add "verify local data" feature to web client 2009-03-04 00:19:11 +00:00
wx
.gitignore simplify the project ignore list 2009-03-04 04:15:26 +00:00
AUTHORS
autogen.sh
ChangeLog
configure.ac (trunk daemon) #1882: take KyleK's suggestion of using inotify when possible. As he writes, "the opendir() approach will basically prevent my NAS drives to go to standby." 2009-03-01 15:38:58 +00:00
COPYING
Makefile.am
NEWS update NEWS 2009-03-05 22:32:43 +00:00
README
transmission.spec.in
uncrustify.cfg

README for Transmission
=======================

Transmission is a fast, easy, and free BitTorrent client.

It runs on Mac OS X (Cocoa interface) and
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface).

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


Building Transmission
=====================

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:

    $ tar xvfj transmission-1.40.tar.bz2
    $ cd transmission-1.40
    $ ./configure -q && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ make -s
    $ su (if necessary for the next line)
    $ make install