1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00
No description
Find a file
2008-06-16 22:19:26 +00:00
beos
cli (cli) #938 - transmissioncli won't scrape 2008-06-12 02:11:54 +00:00
daemon (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
doc (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
gtk (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
libtransmission fix tr_strcasecmp in the case where HAVE_STRCASECMP is not defined 2008-06-16 22:15:53 +00:00
m4
macosx left-allign the text in the inspector pull-down menus; update the Keychain method 2008-06-16 18:31:44 +00:00
misc
po (gtk) update the translations in trunk from launchpad. 2008-06-13 16:35:46 +00:00
third-party #1007: check_auth space delimiter bug 2008-06-09 23:28:14 +00:00
Transmission.xcodeproj add HAVE_STRCASECMP to libT's list of #defines 2008-06-16 22:19:26 +00:00
wx
.gitignore
appcast.xml (trunk) sometimes, not always 2008-06-13 22:03:34 +00:00
AUTHORS
autogen.sh
ChangeLog
configure.ac (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
LICENSE
Makefile.am
NEWS update NEWS; small changes that happen to be on my local copy 2008-06-15 04:57:41 +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