Skip to content

Commit

Permalink
Merge pull request #5 from JanX2/version-0.7
Browse files Browse the repository at this point in the history
Version 0.7
  • Loading branch information
newzealandpaul committed Jun 18, 2014
2 parents a77633d + 51b3f8c commit 339d668
Show file tree
Hide file tree
Showing 7 changed files with 160 additions and 108 deletions.
2 changes: 1 addition & 1 deletion Configs/Base.xcconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARCHS = $(ARCHS_STANDARD_32_64_BIT)
SDKROOT = macosx10.6
SDKROOT = macosx10.7
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_C_LANGUAGE_STANDARD = c99

Expand Down
14 changes: 6 additions & 8 deletions KBWebArchiver.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,22 @@

@interface KBWebArchiver : NSObject
{
NSURL *URL;
NSURL *_URL;

NSMutableDictionary *archiveInformation;
BOOL finishedLoading;
BOOL loadFailed;
NSMutableDictionary *_archiveInformation;
BOOL _finishedLoading;
BOOL _loadFailed;

BOOL localResourceLoadingOnly;
BOOL _localResourceLoadingOnly;
}

@property (nonatomic, readwrite, strong) NSURL *URL;
@property (nonatomic) BOOL localResourceLoadingOnly;

- (id)initWithURLString:(NSString *)aURLString isFilePath:(BOOL)isFilePath;
- (id)initWithURLString:(NSString *)aURLString;
- (id)initWithURL:(NSURL *)aURL;

- (void)setURL:(NSURL *)aURL;
- (NSURL *)URL;

- (void)setURLString:(NSString *)aURLString isFilePath:(BOOL)isFilePath;
- (NSString *)URLString;
- (BOOL)isFilePath;
Expand Down
Loading

0 comments on commit 339d668

Please sign in to comment.