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
2008-07-02 01:04:07 +00:00
beos
cli
daemon #1055 transmission-remote --list outputs an empty list 2008-06-24 08:37:08 +00:00
doc (RPC) make all the speed units consistent. 2008-06-22 13:44:50 +00:00
gtk #1069: Unknown seeders and leechers count in `Peers' tab 2008-07-02 01:04:07 +00:00
libtransmission (rpc) uploading files via an http form w/file inputs works now. 2008-07-01 02:33:31 +00:00
m4
macosx fix bug where inspector would reset when changing transfer state (at the cost of the inspector not updating when a group is selected and a its content changes) 2008-07-01 15:11:58 +00:00
misc
po (gtk) update the translations in trunk from launchpad. 2008-06-13 16:35:46 +00:00
third-party possible fix to the getgateway.c build error -- let's see what hudson thinks of it 2008-06-30 19:57:57 +00:00
Transmission.xcodeproj groups are now stored as objects instead of dictionaries 2008-07-01 01:28:19 +00:00
wx
.gitignore change "English" to "en" 2008-06-30 18:17:40 +00:00
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