~ubuntu-branches/ubuntu/lucid/transmission/lucid

« back to all changes in this revision

Viewing changes to libtransmission/announcer.c

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda, Krzysztof Klimonda, Chris Coulson
  • Date: 2010-03-03 02:55:26 UTC
  • mfrom: (1.1.34 upstream) (2.1.17 sid)
  • Revision ID: james.westby@ubuntu.com-20100303025526-qcjmpnlvk9jv3y5o
Tags: 1.92-0ubuntu1
[ Krzysztof Klimonda ]
* New upstream release (LP: #538034), rebased on debian testing.
  Remaining changes:
  - debian/control:
    + Added replaces & provides clutch (now included as part of transmission).
      Can be removed in lucid+1
    + Added 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
  - debian/control, debian/rules:
    + build transmission gtk+ client with both gconf and libcanberra support.
  - debian/patches/dont_build_libevent.patch:
    + disable libevent in configure.ac and Makefile.am because we use autotools
      to regenerate build files.
  - lucid/debian/patches/updateminiupnpcstrings_double_escape_slash.patch:
    + Deleted as the bug is fixed upstream
* Fixes bugs:
  - Fix directory selection error in GTK+ 2.19 (LP: #518692)
  - Transmission "Set Location" - dialog doesn't disappear (LP: #529037)
  - The "Torrent Options" dialog's Torrent Priority row gets too much
    vertical stretch (LP: #527299)
  - "Open Folder" behavior can be confusing for single-file torrents
    (LP: #505861)
* Refreshed 99_autoreconf.patch

[ Chris Coulson ]
* debian/patches/disable_web_ui.patch:
  - Disable the web UI by default again (LP: #542194)

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
    time_t lastScrapeStartTime;
378
378
    time_t lastScrapeTime;
379
379
    tr_bool lastScrapeSucceeded;
 
380
    tr_bool lastScrapeTimedOut;
380
381
 
381
382
    time_t announceAt;
382
383
    time_t manualAnnounceAllowedAt;
1714
1715
        }
1715
1716
 
1716
1717
        tier->lastScrapeSucceeded = success;
 
1718
        tier->lastScrapeTimedOut = responseCode == 0;
1717
1719
 
1718
1720
        if( success && tier->currentTracker->host )
1719
1721
            tier->currentTracker->host->lastSuccessfulRequest = now;
1959
1961
                if(( st->hasScraped = tier->lastScrapeTime != 0 )) {
1960
1962
                    st->lastScrapeTime = tier->lastScrapeTime;
1961
1963
                    st->lastScrapeSucceeded = tier->lastScrapeSucceeded;
 
1964
                    st->lastScrapeTimedOut = tier->lastScrapeTimedOut;
1962
1965
                    tr_strlcpy( st->lastScrapeResult, tier->lastScrapeStr, sizeof( st->lastScrapeResult ) );
1963
1966
                }
1964
1967