~sense/ubuntu/lucid/transmission/fix-497882

« back to all changes in this revision

Viewing changes to macosx/Sparkle.framework/Versions/A/Headers/SUAppcastItem.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>
10
 
 
 
9
#ifndef SUAPPCASTITEM_H
 
10
#define SUAPPCASTITEM_H
11
11
 
12
12
@interface SUAppcastItem : NSObject {
13
13
        NSString *title;
14
14
        NSDate *date;
15
 
        NSString *description;
 
15
        NSString *itemDescription;
16
16
        
17
17
        NSURL *releaseNotesURL;
18
18
        
19
 
        NSString *DSASignature;
20
 
        NSString *MD5Sum;
 
19
        NSString *DSASignature; 
 
20
        NSString *minimumSystemVersion;
21
21
        
22
22
        NSURL *fileURL;
23
 
        NSString *fileVersion;
24
23
        NSString *versionString;
 
24
        NSString *displayVersionString;
 
25
        
 
26
        NSDictionary *propertiesDictionary;
25
27
}
26
28
 
27
29
// Initializes with data from a dictionary provided by the RSS class.
28
30
- initWithDictionary:(NSDictionary *)dict;
29
31
 
30
32
- (NSString *)title;
31
 
- (void)setTitle:(NSString *)aTitle;
32
 
 
 
33
- (NSString *)versionString;
 
34
- (NSString *)displayVersionString;
33
35
- (NSDate *)date;
34
 
- (void)setDate:(NSDate *)aDate;
35
 
 
36
 
- (NSString *)description;
37
 
- (void)setDescription:(NSString *)aDescription;
38
 
 
 
36
- (NSString *)itemDescription;
39
37
- (NSURL *)releaseNotesURL;
40
 
- (void)setReleaseNotesURL:(NSURL *)aReleaseNotesURL;
41
 
 
 
38
- (NSURL *)fileURL;
42
39
- (NSString *)DSASignature;
43
 
- (void)setDSASignature:(NSString *)aDSASignature;
44
 
 
45
 
- (NSString *)MD5Sum;
46
 
- (void)setMD5Sum:(NSString *)aMd5Sum;
47
 
 
48
 
- (NSURL *)fileURL;
49
 
- (void)setFileURL:(NSURL *)aFileURL;
50
 
 
51
 
- (NSString *)fileVersion;
52
 
- (void)setFileVersion:(NSString *)aFileVersion;
53
 
 
54
 
- (NSString *)versionString;
55
 
- (void)setVersionString:(NSString *)versionString;
 
40
- (NSString *)minimumSystemVersion;
 
41
 
 
42
// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions.
 
43
- (NSDictionary *)propertiesDictionary;
56
44
 
57
45
@end
 
46
 
 
47
#endif