~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to README

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2008-12-28 18:50:08 UTC
  • mfrom: (1.1.20 upstream)
  • Revision ID: james.westby@ubuntu.com-20081228185008-2u8ac12dbckrwn7c
Tags: 1.42-0ubuntu1
* New upstream version (LP: #311959):
  - All platforms:
    - Better peer management in large swarms
    - Support BitTorrent Enhancement Proposal (BEP) #21 "Extension for 
      Partial Seeds"
    - Partial support for BEP #6 "Fast Extension" (reject, have all/none)
    - Honor the peer's BEP #10 reqq key, when available
    - Fix 1.40 "Got HTTP Status Code: 0" error message
    - Fix 1.40 "lazy bitfield" error
    - Fix 1.40 "jumpy upload speed" bug
    - Fix handshake peer_id error
    - Corrrectly handle Windows-style newlines in Bluetack blocklists
    - More accurate bandwidth measurement
    - File selection & priority was reset when editing a torrent's 
      tracker list
    - Fix autoconf/automake build warnings
  - GTK+:
    - In the Details dialog's peer tabs, rows were sometimes duplicated
    - Minor bugfixes, usability changes, and locale improvements
    - Three new translations: Afrikaans, Asturian, Bosnian
    - Sixteen updated translations
  - Daemon:
    - Fix 1.40 bug in handling IP whitelist
    - Minor bugfixes and output cleanup
    - Windows portability
  - CLI:
    - Fix minor free-memory-read bug

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
It runs on Mac OS X (Cocoa interface),
7
7
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface)
8
 
and BeOS (native interface).
9
8
 
10
9
Visit http://www.transmissionbt.com/ for more information.
11
10
 
16
15
Transmission has an Xcode project file (Transmission.xcodeproj)
17
16
for building in Xcode.
18
17
 
 
18
For a more detailed description, and dependancies, visit:
 
19
http://trac.transmissionbt.com/wiki/
 
20
 
19
21
Building a Transmission release from the command line:
20
22
 
21
 
    $ tar xvfj transmission-1.0.tar.bz2
22
 
    $ cd transmission-1.0
 
23
    $ tar xvfj transmission-1.40.tar.bz2
 
24
    $ cd transmission-1.40
23
25
    $ ./configure -q && make -s
24
26
    $ su (if necessary for the next line)
25
27
    $ make install
28
30
 
29
31
    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
30
32
    $ cd Transmission
31
 
    $ ./autogen.sh
32
 
    $ ./configure -q && make -s
 
33
    $ ./autogen.sh && make -s
 
34
    $ su (if necessary for the next line)
 
35
    $ make install
33
36
 
34
37
Building Transmission from SVN (Updating):
35
38
 
36
39
    $ cd Transmission
 
40
    $ make clean
37
41
    $ svn up
38
42
    $ make -s
39
 
 
 
43
    $ su (if necessary for the next line)
 
44
    $ make install