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

« back to all changes in this revision

Viewing changes to macosx/Sparkle.framework/Versions/A/Headers/SUAppcast.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2008-11-28 15:33:48 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20081128153348-it70trfnxiroblmc
Tags: 1.40-0ubuntu1
* New upstream release (LP: #302672)
  - Tracker communication uses fewer resources
  - More accurate bandwidth limits
  - Reduce disk fragmentation by preallocating files (LP: #287726)
  - Stability, security and performance improvements to the RPC /
    Web UI server (closes LP: #290423)
  - Support compression when serving Web UI and RPC responses
  - Simplify the RPC whitelist
  - Fix bug that prevented handshakes with encrypted BitComet peers
  - Fix 1.3x bug that could re-download some data unnecessarily
    (LP: #295040)
  - Option to automatically update the blocklist weekly
  - Added off-hour bandwidth scheduling
  - Simplify file/priority selection in the details dialog
  - Fix a couple of crashes
  - New / updated translations
  - Don't inhibit hibernation by default (LP: #292929)
  - Use "close" animation when sending to notification area (LP: #130811)
  - Fix resize problems (LP: #269872)
  - Support "--version" option when launching from command line
    (LP: #292011)
  - Correctly parse announce URLs that have leading or trailing
    spaces (LP: #262411)
  - Display an error when "Open Torrent" fails (LP: #281463)
* Dropped 10_fix_crasher_from_upstream.dpatch: Fix is in this
  upstream release.
* debian/control: Don't just build-depend on libcurl-dev, which is
  a virtual package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
//  Copyright 2006 Andy Matuschak. All rights reserved.
7
7
//
8
8
 
9
 
#import <Cocoa/Cocoa.h>
 
9
#ifndef SUAPPCAST_H
 
10
#define SUAPPCAST_H
10
11
 
11
 
@class RSS, SUAppcastItem;
 
12
@class SUAppcastItem;
12
13
@interface SUAppcast : NSObject {
13
14
        NSArray *items;
 
15
        NSString *userAgentString;
14
16
        id delegate;
 
17
        NSMutableData *incrementalData;
15
18
}
16
19
 
17
20
- (void)fetchAppcastFromURL:(NSURL *)url;
18
21
- (void)setDelegate:delegate;
 
22
- (void)setUserAgentString:(NSString *)userAgentString;
19
23
 
20
 
- (SUAppcastItem *)newestItem;
21
24
- (NSArray *)items;
22
25
 
23
26
@end
24
27
 
25
28
@interface NSObject (SUAppcastDelegate)
26
 
- appcastDidFinishLoading:(SUAppcast *)appcast;
27
 
@end
 
 
b'\\ No newline at end of file'
 
29
- (void)appcastDidFinishLoading:(SUAppcast *)appcast;
 
30
- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error;
 
31
@end
 
32
 
 
33
#endif