aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-03-26 02:29:06 +0000
committerrowanbeentje <rowan@beent.je>2009-03-26 02:29:06 +0000
commit8e148297c9ef0feda357265c91597d85769db6df (patch)
tree4c310ed1669c92ea0e93ff02717a5026e391b2de /Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
parent805aacd10db95bfe5db463a4a4e79efb8a9c8a95 (diff)
downloadsequelpro-8e148297c9ef0feda357265c91597d85769db6df.tar.gz
sequelpro-8e148297c9ef0feda357265c91597d85769db6df.tar.bz2
sequelpro-8e148297c9ef0feda357265c91597d85769db6df.zip
- Update Sparkle to 1.5b6 (from 1.5b1). This should address Issue #197 as soon as the new framework is used (ie before 0.9.6)
- Add a public key to the project and add a link to it in Info.plist for use by Sparkle when verifying future updates - Add a new build configuration (Distribution), and add a new script for use with only that configuration - constructs a basic disk image, asks for the private key file, and signs it.
Diffstat (limited to 'Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h')
-rw-r--r--Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
new file mode 100644
index 00000000..7f1ca65c
--- /dev/null
+++ b/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
@@ -0,0 +1,47 @@
+//
+// SUAppcastItem.h
+// Sparkle
+//
+// Created by Andy Matuschak on 3/12/06.
+// Copyright 2006 Andy Matuschak. All rights reserved.
+//
+
+#ifndef SUAPPCASTITEM_H
+#define SUAPPCASTITEM_H
+
+@interface SUAppcastItem : NSObject {
+ NSString *title;
+ NSDate *date;
+ NSString *itemDescription;
+
+ NSURL *releaseNotesURL;
+
+ NSString *DSASignature;
+ NSString *minimumSystemVersion;
+
+ NSURL *fileURL;
+ NSString *versionString;
+ NSString *displayVersionString;
+
+ NSDictionary *propertiesDictionary;
+}
+
+// Initializes with data from a dictionary provided by the RSS class.
+- initWithDictionary:(NSDictionary *)dict;
+
+- (NSString *)title;
+- (NSString *)versionString;
+- (NSString *)displayVersionString;
+- (NSDate *)date;
+- (NSString *)itemDescription;
+- (NSURL *)releaseNotesURL;
+- (NSURL *)fileURL;
+- (NSString *)DSASignature;
+- (NSString *)minimumSystemVersion;
+
+// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions.
+- (NSDictionary *)propertiesDictionary;
+
+@end
+
+#endif