1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 18:25:35 +00:00
No description
Find a file
2010-11-13 16:07:27 +00:00
cli (trunk cli) "transmission-cli 2.10 segfaults" -- r11330 wasn't the right fix. Thanks to Longinus00 for the proofreading. 2010-10-18 03:11:51 +00:00
daemon (trunk daemon) "'transmission-remote --add' has no output/status messages" -- fixed. 2010-10-16 16:08:40 +00:00
extras (trunk) "make blocklist URL configurable" -- implemented in GTK+, Qt, and RPC 2010-10-31 17:16:12 +00:00
gtk (trunk gtk) remove calls to gtk_dialog_set_has_separator(), which has been removed in GNOME 3 2010-11-10 06:29:08 +00:00
libtransmission (trunk libT) add some new bugs to the code so that it will crash when vraa tries to use it 2010-11-11 15:31:11 +00:00
m4
macosx disable the blocklist's update button if no URL is entered 2010-11-13 16:07:27 +00:00
po
qt (trunk) "creation date of magnet links are set before the epoch." -- fixed. 2010-11-08 19:16:03 +00:00
third-party (trunk third-party) "remove dependency to which" -- committed. fix by geirha. 2010-11-02 13:37:34 +00:00
Transmission.xcodeproj
utils (trunk libT) "transmission-show's file list should be sorted alphabetically" -- done. 2010-11-03 16:59:24 +00:00
web (trunk) "creation date of magnet links are set before the epoch." -- fixed. 2010-11-08 19:16:03 +00:00
.gitignore
AUTHORS update AUTHORS and Credits with my LLC info 2010-11-02 01:07:48 +00:00
autogen.sh
ChangeLog
configure.ac set version to 2.11+ 2010-10-17 01:54:27 +00:00
COPYING
Makefile.am
NEWS remove the descending option in NEWS's addresses 2010-11-08 00:26:06 +00:00
README (trunk) "README file is outdated" -- commit patch from delarius. 2010-11-05 19:41:41 +00:00
transmission-gtk.spec.in
uncrustify.cfg
update-version-h.sh change 'v' field in dht to use major/minor version instead of svn revision 2010-10-13 17:09:05 +00:00

ABOUT

  Transmission is a fast, easy, and free BitTorrent client.
  It comes in several flavors:

    * A native Mac OS X GUI application
    * GTK+ and Qt GUI applications for Linux, BSD, etc.
    * A headless daemon for servers and routers
    * A web UI for remote controlling any of the above

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

BUILDING

  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:

    $ xz -d -c transmission-2.11.tar.xz | tar xf -
    $ cd transmission-2.11
    $ ./configure
    $ make
    $ sudo make install

  Building Transmission from the nightly builds:

    Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/
    and follow the steps from the previous section.

    If you're new to building programs from source code, this is typically 
    easier than building from SVN.

  Building Transmission from SVN (First Time):

    $ svn co svn://svn.transmissionbt.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ make
    $ sudo make install

  Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ ./update-version-h.sh 
    $ make
    $ sudo make install

  Notes for building on Solaris' C compiler:  User av reports success with
  this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt'