Skip to content
This repository was archived by the owner on Apr 25, 2019. It is now read-only.

Commit e6fd189

Browse files
author
Russell Cohen
committed
Release candidate 0.4.5
1 parent c17f94a commit e6fd189

File tree

6 files changed

+14
-3
lines changed

6 files changed

+14
-3
lines changed
23.2 KB
Binary file not shown.

Library/INK.framework/Versions/A/Headers/INKBlob.h

+2
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@
3737
// Creates a blob from a file:// url pointing to a file on the device.
3838
+ (INKBlob*)blobFromLocalFile:(NSURL *)source;
3939

40+
- (NSInteger) crcChecksum;
41+
4042
@end

Library/INK.framework/Versions/A/Headers/INKCoreManager.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
@property (strong, atomic) NSString *callbackURLScheme;
1919
@property (readonly,atomic) INKApp *callingApp;
2020
@property (readonly,atomic) NSString *currentRequestId;
21-
@property (readonly,atomic) INKBlob *currentBlob;
21+
@property (readonly, nonatomic) INKBlob *currentBlob;
22+
@property (readonly, atomic) NSInteger blobChecksum;
2223

2324
// RCOH THIS IS REQUIRED FOR BACKWARDS COMPATIBILITY. REMOVO PRONTO.
2425
@property (copy,atomic) INKActionCallbackBlock ios6ReturnBlock;
@@ -46,7 +47,6 @@
4647

4748
// Returns whether app was launched via ink and this should return in the corresponding way
4849
- (BOOL)appShouldReturn;
49-
5050
- (BOOL)canPerformAction:(INKAction*)action;
5151

5252
//Low-level inter-app communication stuff

Library/INK.framework/Versions/A/Headers/INKTriple.h

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
@property(nonatomic, strong) INKBlob *blob;
2222
@property(nonatomic, strong) INKAction *action;
2323
@property(nonatomic, strong) INKUser *user;
24+
@property BOOL useInstallFlowProtocol;
25+
2426

2527
// Instantiates a new triple for the given [Action, Blob, User] set.
2628
+ (id)tripleWithAction:(INKAction *)action blob:(INKBlob *)blob user:(INKUser *)user;

Library/INK.framework/Versions/A/INK

931 KB
Binary file not shown.

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ To install the docset file into Xcode, run `./install_docs.sh`. Note that you'll
99

1010
Changelog
1111

12-
* v1.0 (8/27/2013):
12+
* v4.4 (9/3/2013):
13+
* BREAKING CHANGE: Apps must link against zlib. Add "-lz" to "Other linker flags" in your build settings
14+
* Implemented "magic install flow" (actions continue when app is newly installed)
15+
* NOTE: Your app must be ready to handle actions by the time didFinishLaunchingWithOptions has finished running.
16+
* "Discard your changes" only appears when changes have been made
17+
* Stability improvements to the underlying communication protocol
18+
* Fixed bug where loading spinner didn't appear for PDFs
19+
* v4.3 (8/27/2013):
1320
* Better warning for nil blobs and returnWithBlob: nil
1421
* INKActions are now keyed off of UUIDs.
1522
* This deprecates [INKAction action:name...] in favor of [INKAction actionWithUUID:...]. All existing actions have UUIDs matching their user displayed text so existing code, although deprecated, will continue to work.

0 commit comments

Comments
 (0)