1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-04 21:43:03 +00:00
No description
Find a file
2008-06-03 16:28:09 +00:00
beos
cli #224 (creating multi-tracker torrents): add multitracker support in libT's makemeta API, and in the gtk+ interface. This probably breaks the mac build... 2008-06-01 05:36:23 +00:00
daemon
doc
gtk (gtk) rough draft of the preferences dialog's "Remote Access" tab: enable/disable RPC, port, ACL, password, and password toggle 2008-06-02 21:02:38 +00:00
libtransmission #988: Optimistic unchoke can unchoke uninterested peers 2008-06-03 04:29:56 +00:00
m4
macosx only update the options window when the updated torrent is already selected 2008-06-03 16:28:09 +00:00
misc
po add gtk/tracker-list.c to the list of translatable files 2008-06-01 05:45:40 +00:00
third-party
Transmission.xcodeproj potential decrease in memory usage when showing the group dividers 2008-05-31 02:38:44 +00:00
wx API cleanup: s/tr_torrentRates/tr_sessionGetSpeed/ 2008-05-30 15:19:07 +00:00
.gitignore
appcast.xml
AUTHORS
autogen.sh
ChangeLog
configure.ac
LICENSE
Makefile.am
NEWS attempt to make the tracker table and buttons a bit nicer on Tiger 2008-06-03 15:27:03 +00:00
README
transmission.spec.in

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

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

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

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


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

Transmission has an Xcode project file (Transmission.xcodeproj)
for building in Xcode.

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.0.tar.bz2
    $ cd transmission-1.0
    $ ./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
    $ ./configure -q && make -s

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ svn up
    $ make -s