~ubuntu-branches/ubuntu/quantal/sunpinyin/quantal

« back to all changes in this revision

Viewing changes to wrapper/macos/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h

  • Committer: Package Import Robot
  • Author(s): YunQiang Su
  • Date: 2012-04-11 03:06:40 UTC
  • mfrom: (1.1.4) (1.2.8 sid)
  • Revision ID: package-import@ubuntu.com-20120411030640-8mxepz5e6wffy87c
Tags: 2.0.3+git20120404-1
* Medium urgency for fixing RC bug.
* New upstream commit: fix FTBFS with gcc-4.7 (Closes: #667385).
* Add Multi-Arch: same to libsunpinyin3, -dev and -dbg.
* Add YunQiang Su to uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
//  SUAppcastItem.h
3
 
//  Sparkle
4
 
//
5
 
//  Created by Andy Matuschak on 3/12/06.
6
 
//  Copyright 2006 Andy Matuschak. All rights reserved.
7
 
//
8
 
 
9
 
#ifndef SUAPPCASTITEM_H
10
 
#define SUAPPCASTITEM_H
11
 
 
12
 
@interface SUAppcastItem : NSObject
13
 
{
14
 
@private
15
 
        NSString *title;
16
 
        NSDate *date;
17
 
        NSString *itemDescription;
18
 
        
19
 
        NSURL *releaseNotesURL;
20
 
        
21
 
        NSString *DSASignature; 
22
 
        NSString *minimumSystemVersion;
23
 
        
24
 
        NSURL *fileURL;
25
 
        NSString *versionString;
26
 
        NSString *displayVersionString;
27
 
 
28
 
        NSDictionary *deltaUpdates;
29
 
 
30
 
        NSDictionary *propertiesDictionary;
31
 
}
32
 
 
33
 
// Initializes with data from a dictionary provided by the RSS class.
34
 
- initWithDictionary:(NSDictionary *)dict;
35
 
- initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error;
36
 
 
37
 
- (NSString *)title;
38
 
- (NSString *)versionString;
39
 
- (NSString *)displayVersionString;
40
 
- (NSDate *)date;
41
 
- (NSString *)itemDescription;
42
 
- (NSURL *)releaseNotesURL;
43
 
- (NSURL *)fileURL;
44
 
- (NSString *)DSASignature;
45
 
- (NSString *)minimumSystemVersion;
46
 
- (NSDictionary *)deltaUpdates;
47
 
- (BOOL)isDeltaUpdate;
48
 
 
49
 
// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions.
50
 
- (NSDictionary *)propertiesDictionary;
51
 
 
52
 
@end
53
 
 
54
 
#endif