Skip to content

Commit

Permalink
Updates for 0.11.17 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmednawar committed Mar 8, 2016
1 parent 20a0a13 commit ea2452e
Show file tree
Hide file tree
Showing 47 changed files with 15,727 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch-SDK/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.11.16"
#define SDK_VERSION @"0.11.17"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.11.16"
#define SDK_VERSION @"0.11.17"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
8 changes: 8 additions & 0 deletions Branch.framework/Versions/A/Headers/BranchUniversalObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,24 @@ typedef NS_ENUM(NSInteger, ContentIndexMode) {

- (instancetype)initWithCanonicalIdentifier:(NSString *)canonicalIdentifier;
- (instancetype)initWithTitle:(NSString *)title;

- (void)addMetadataKey:(NSString *)key value:(NSString *)value;

- (void)registerView;
- (void)registerViewWithCallback:(callbackWithParams)callback;

- (NSString *)getShortUrlWithLinkProperties:(BranchLinkProperties *)linkProperties;
- (NSString *)getShortUrlWithLinkPropertiesAndIgnoreFirstClick:(BranchLinkProperties *)linkProperties;
- (void)getShortUrlWithLinkProperties:(BranchLinkProperties *)linkProperties andCallback:(callbackWithUrl)callback;

- (UIActivityItemProvider *)getBranchActivityItemWithLinkProperties:(BranchLinkProperties *)linkProperties;

- (void)showShareSheetWithShareText:(NSString *)shareText andCallback:(callback)callback __attribute__((deprecated(("This method has been deprecated. Use -[showShareSheetWithShareText:completion:] instead."))));
- (void)showShareSheetWithLinkProperties:(BranchLinkProperties *)linkProperties andShareText:(NSString *)shareText fromViewController:(UIViewController *)viewController andCallback:(callback)callback __attribute__((deprecated(("This method has been deprecated. Use -[showShareSheetWithLinkProperties:andShareText:fromViewController:viewController:completion:] instead."))));
- (void)showShareSheetWithShareText:(NSString *)shareText completion:(shareCompletion)completion;
- (void)showShareSheetWithLinkProperties:(BranchLinkProperties *)linkProperties andShareText:(NSString *)shareText fromViewController:(UIViewController *)viewController completion:(shareCompletion)completion;
//iPad
- (void)showShareSheetWithLinkProperties:(BranchLinkProperties *)linkProperties andShareText:(NSString *)shareText fromViewController:(UIViewController *)viewController anchor:(UIBarButtonItem *)anchor completion:(shareCompletion)completion;

- (void)listOnSpotlight;
- (void)listOnSpotlightWithCallback:(callbackWithUrl)callback;
Expand Down
2 changes: 1 addition & 1 deletion Branch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Branch"
s.version = "0.11.16"
s.version = "0.11.17"
s.summary = "Create an HTTP URL for any piece of content in your app"
s.description = <<-DESC
- Want the highest possible conversions on your sharing feature?
Expand Down
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Branch iOS SDK change log

- v0.11.17
* Carthage support
* account for different anchors on iPad for share sheet
* add canonincal ID and URL to spotlight index
* change matchDuration parameter sent to the backend
* fix unit tests
* URL encoding for iOS 6

- v0.11.16
* increased timeout for SFSafariViewController
* removed init session methods that do not use launchOptions
Expand Down
109 changes: 109 additions & 0 deletions html/Blocks/BNCServerCallback.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<title>BNCServerCallback Block Reference</title>

<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1334)">
</head>
<body class="appledoc">
<header>
<div class="container" class="hide-in-xcode">

<h1 id="library-title">
<a href="../index.html">b </a>
</h1>

<p id="developer-home">
<a href="../index.html">b</a>
</p>

</div>
</header>

<aside>
<div class="container">
<nav>
<ul id="header-buttons" role="toolbar">
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>

<li id="on-this-page" role="navigation">
<label>
On This Page

<div class="chevron">
<div class="chevy chevron-left"></div>
<div class="chevy chevron-right"></div>
</div>

<select id="jump-to">
<option value="top">Jump To&#133;</option>





</select>
</label>
</li>
</ul>
</nav>
</div>
</aside>

<article>
<div id="overview_contents" class="container">
<div id="content">
<main role="main">
<h1 class="title">BNCServerCallback Block Reference</h1>


<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<th>Declared in</th>
<td>BNCServerInterface.h</td>
</tr>
</tbody></table></div>









<a title="Block Definition" name="instance_methods"></a>
<h4 class="method-subtitle parameter-title">Block Definition</h4>
<h3 class="subsubtitle method-title">BNCServerCallback</h3>


<code>typedef void (^BNCServerCallback) (BNCServerResponse *response, NSError *error)</code>





</main>

<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2016 b. All rights reserved. Updated: 2016-03-06</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

</div>
</footer>
</div>
</div>
</article>

<script src="../js/script.js"></script>
</body>
</html>
109 changes: 109 additions & 0 deletions html/Blocks/OHHTTPStubsTestBlock.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<title>OHHTTPStubsTestBlock Block Reference</title>

<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1334)">
</head>
<body class="appledoc">
<header>
<div class="container" class="hide-in-xcode">

<h1 id="library-title">
<a href="../index.html">b </a>
</h1>

<p id="developer-home">
<a href="../index.html">b</a>
</p>

</div>
</header>

<aside>
<div class="container">
<nav>
<ul id="header-buttons" role="toolbar">
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>

<li id="on-this-page" role="navigation">
<label>
On This Page

<div class="chevron">
<div class="chevy chevron-left"></div>
<div class="chevy chevron-right"></div>
</div>

<select id="jump-to">
<option value="top">Jump To&#133;</option>





</select>
</label>
</li>
</ul>
</nav>
</div>
</aside>

<article>
<div id="overview_contents" class="container">
<div id="content">
<main role="main">
<h1 class="title">OHHTTPStubsTestBlock Block Reference</h1>


<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<th>Declared in</th>
<td>OHHTTPStubs.h</td>
</tr>
</tbody></table></div>









<a title="Block Definition" name="instance_methods"></a>
<h4 class="method-subtitle parameter-title">Block Definition</h4>
<h3 class="subsubtitle method-title">OHHTTPStubsTestBlock</h3>


<code>typedef BOOL (^OHHTTPStubsTestBlock) (NSURLRequest *request)</code>





</main>

<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2016 b. All rights reserved. Updated: 2016-03-06</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

</div>
</footer>
</div>
</div>
</article>

<script src="../js/script.js"></script>
</body>
</html>
109 changes: 109 additions & 0 deletions html/Blocks/UrlConnectionCallback.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<title>UrlConnectionCallback Block Reference</title>

<link rel="stylesheet" href="../css/style.css">
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
<meta name="generator" content="appledoc 2.2.1 (build 1334)">
</head>
<body class="appledoc">
<header>
<div class="container" class="hide-in-xcode">

<h1 id="library-title">
<a href="../index.html">b </a>
</h1>

<p id="developer-home">
<a href="../index.html">b</a>
</p>

</div>
</header>

<aside>
<div class="container">
<nav>
<ul id="header-buttons" role="toolbar">
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>

<li id="on-this-page" role="navigation">
<label>
On This Page

<div class="chevron">
<div class="chevy chevron-left"></div>
<div class="chevy chevron-right"></div>
</div>

<select id="jump-to">
<option value="top">Jump To&#133;</option>





</select>
</label>
</li>
</ul>
</nav>
</div>
</aside>

<article>
<div id="overview_contents" class="container">
<div id="content">
<main role="main">
<h1 class="title">UrlConnectionCallback Block Reference</h1>


<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<th>Declared in</th>
<td>BNCServerInterfaceTests.m</td>
</tr>
</tbody></table></div>









<a title="Block Definition" name="instance_methods"></a>
<h4 class="method-subtitle parameter-title">Block Definition</h4>
<h3 class="subsubtitle method-title">UrlConnectionCallback</h3>


<code>typedef void (^UrlConnectionCallback) (NSURLResponse *, NSData *, NSError *)</code>





</main>

<footer>
<div class="footer-copyright">

<p class="copyright">Copyright &copy; 2016 b. All rights reserved. Updated: 2016-03-06</p>


<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p>

</div>
</footer>
</div>
</div>
</article>

<script src="../js/script.js"></script>
</body>
</html>
Loading

0 comments on commit ea2452e

Please sign in to comment.