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 17:55:43 +00:00
beos (libt) more janitorial work on cleaning up tr_session*() and tr_torrent*() functions: session stats, torrent count, and manual update. 2008-05-22 20:44:41 +00:00
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 (rpc) better debugging messages in transmission-remote 2008-05-27 21:47:07 +00:00
doc add `hashString' to torrent-stat's response 2008-05-23 13:18:17 +00:00
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 implement most of the rpc preferences updating 2008-06-03 17:55:43 +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 #972: Update to the 2008/05/29 snapshot of libnatpmp 2008-05-29 13:39:39 +00:00
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 (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
AUTHORS
autogen.sh autogen.sh cleanups by Triskelios 2008-05-27 21:49:09 +00:00
ChangeLog
configure.ac (trunk) update to 1.21 2008-05-21 21:15:15 +00:00
LICENSE
Makefile.am (rpc) ensure "doc/rpc-spec.txt" is added to the tarball 2008-05-21 14:31:43 +00:00
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 sync the spec file up with the curl requirements 2008-04-24 12:02:15 +00:00

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