~ubuntu-branches/ubuntu/maverick/transmission/maverick-updates

« back to all changes in this revision

Viewing changes to libtransmission/metainfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-12-08 10:49:11 UTC
  • mfrom: (1.1.29 upstream) (2.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20091208104911-06gio45n2nla3vpg
Tags: 1.80~b1-0ubuntu1
* New upstream release (LP: #460620), rebased on debian unstable
  remaining changes:
  - debian/control:
    + Added replaces & provides clutch (now included as part of transmission).
      Can be removed in lucid+1
    + Added quilt, liblaunchpad-integration-dev and lsb-release to Build-Depends
  - debian/rules:
    + create a po template during package build.
  - debian/patches/01_lpi.patch:
    + integrate transmission with launchpad
  - debian/patches/20_add_x-ubuntu-gettext-domain.diff:
    + add x-ubuntu-gettext-domain to .desktop file.
  - debian/transmission-daemon.default:
    - remove --auth from OPTIONS
* Fixes bugs:
  - tray menu shows wrong status for "main window" when started minimized
    (LP: #451415)
* Refreshed patches:
  - dont_build_libevent.patch
  - 99_autoreconf.patch
* Removed patches:
  - 21_onPortTested.diff, 23_tr_torrentNext.diff and
    24_tr_torrentDeleteLocalData_do_move.diff
* debian/patches/21_fix_inhibition.patch:
  - The right value for suspend inhibition is 4
* debian/control:
  - Build-Depend on libgconf2-dev to enable magnet link registration and on
    libcanberra-gtk-dev for notification sound.
* debian/watch:
  - make it detect beta versions, to be removed after 1.80 is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: metainfo.h 8871 2009-08-05 01:59:16Z charles $
 
2
 * $Id: metainfo.h 9550 2009-11-24 02:16:31Z charles $
3
3
 *
4
4
 * Copyright (c) 2005-2008 Transmission authors and contributors
5
5
 *
23
23
 *****************************************************************************/
24
24
 
25
25
#ifndef __TRANSMISSION__
26
 
#error only libtransmission should #include this header.
 
26
 #error only libtransmission should #include this header.
27
27
#endif
28
28
 
29
29
#ifndef TR_METAINFO_H
32
32
#include "transmission.h"
33
33
 
34
34
struct tr_benc;
 
35
struct tr_magnet_info;
35
36
 
36
37
tr_bool  tr_metainfoParse( const tr_session     * session,
37
 
                           tr_info              * info,
 
38
                           tr_info              * setmeInfo,
 
39
                           int                  * setmeInfoDictLength,
 
40
                           int                  * setmeInfoDictOffset,
38
41
                           const struct tr_benc * benc );
39
42
 
40
43
void tr_metainfoRemoveSaved( const tr_session * session,
43
46
void tr_metainfoMigrate( tr_session * session,
44
47
                         tr_info    * inf );
45
48
 
 
49
void tr_metainfoSetFromMagnet( tr_info * inf, const struct tr_magnet_info * m );
 
50
 
 
51
 
46
52
#endif