This repository has been archived by the owner on May 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eun
committed
Sep 25, 2014
1 parent
745e91c
commit 463b47b
Showing
107 changed files
with
2,445 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Resources |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Sparkle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// | ||
// SUAppcast.h | ||
// Sparkle | ||
// | ||
// Created by Andy Matuschak on 3/12/06. | ||
// Copyright 2006 Andy Matuschak. All rights reserved. | ||
// | ||
|
||
#ifndef SUAPPCAST_H | ||
#define SUAPPCAST_H | ||
|
||
@class SUAppcastItem; | ||
@interface SUAppcast : NSObject { | ||
NSArray *items; | ||
NSString *userAgentString; | ||
id delegate; | ||
NSMutableData *incrementalData; | ||
} | ||
|
||
- (void)fetchAppcastFromURL:(NSURL *)url; | ||
- (void)setDelegate:delegate; | ||
- (void)setUserAgentString:(NSString *)userAgentString; | ||
|
||
- (NSArray *)items; | ||
|
||
@end | ||
|
||
@interface NSObject (SUAppcastDelegate) | ||
- (void)appcastDidFinishLoading:(SUAppcast *)appcast; | ||
- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error; | ||
@end | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.