Skip to content

Commit ed4760d

Browse files
committed
3.1.1
1 parent dbf5f48 commit ed4760d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+459
-449
lines changed

PebbleKit-Static.framework/Versions/A/Headers/PBErrors.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ typedef enum {
4444
PBErrorCodeMessageTooLong,
4545
PBErrorCodeBluetoothDisabled,
4646
PBErrorCodeBluetoothLowEnergyHandshakeFailed,
47-
PBErrorCodeFirmwareUpdateMetadataInvalid
47+
PBErrorCodeFirmwareUpdateMetadataInvalid,
48+
PBErrorCodeBluetoothLowEnergyFailedToConnect,
4849
} PBErrorCode;
4950

5051
@interface NSError (Pebble)

PebbleKit-Static.framework/Versions/A/Headers/PBPebbleCentral.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ PB_EXTERN_CLASS @interface PBPebbleCentral : NSObject
9595
/**
9696
Returns the most recently connected watch from the -registeredWatches array.
9797
*/
98-
- (PBWatch *)lastConnectedWatch;
98+
- (PBWatch * __nullable)lastConnectedWatch;
9999

100100
/**
101101
Returns the DataLoggingService for a (previously registered) appUUID

PebbleKit-Static.framework/Versions/A/Headers/PBWatch.h

+4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ PB_EXTERN_CLASS @interface PBWatch : NSObject
5252
* YES if the receiver it's the first time that watch has been seen.
5353
* @discussion This property is KVO-compliant.
5454
*/
55+
#ifdef __cplusplus
56+
- (BOOL)isNew;
57+
#else
5558
@property (nonatomic, readonly, getter=isNew) BOOL new;
59+
#endif
5660

5761
/**
5862
* YES if the receiver is connected and NO if the receiver is disconnected.
Binary file not shown.

PebbleKit-Static.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "PebbleKit-Static"
3-
s.version = "3.1.0"
3+
s.version = "3.1.1"
44
s.summary = "Embed PebbleKit iOS into your app to communicate with Pebble"
55
s.homepage = "https://github.com/pebble/pebble-ios-sdk"
66
s.license = {

PebbleKit-iOS.docset/Contents/Resources/Documents/Blocks/PBVersionInfoCompletionBlock.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h3 class="subsubtitle method-title">PBVersionInfoCompletionBlock</h3>
9393
<footer>
9494
<div class="footer-copyright">
9595

96-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
96+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
9797

9898

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Categories/NSData+Pebble.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ <h4 class="method-subtitle">Declared In</h4>
172172
<footer>
173173
<div class="footer-copyright">
174174

175-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
175+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
176176

177177

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Categories/NSDictionary+Pebble.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ <h4 class="method-subtitle">Declared In</h4>
176176
<footer>
177177
<div class="footer-copyright">
178178

179-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
179+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
180180

181181

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Categories/NSError+Pebble.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ <h4 class="method-subtitle">Declared In</h4>
251251
<footer>
252252
<div class="footer-copyright">
253253

254-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
254+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
255255

256256

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Categories/NSNumber+stdint.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ <h4 class="method-subtitle">Declared In</h4>
850850
<footer>
851851
<div class="footer-copyright">
852852

853-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
853+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
854854

855855

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBBitmap.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ <h4 class="method-subtitle">Declared In</h4>
391391
<footer>
392392
<div class="footer-copyright">
393393

394-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
394+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
395395

396396

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBDataLoggingService.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ <h4 class="method-subtitle">Declared In</h4>
351351
<footer>
352352
<div class="footer-copyright">
353353

354-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
354+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
355355

356356

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBDataLoggingSessionMetadata.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ <h4 class="method-subtitle">Declared In</h4>
526526
<footer>
527527
<div class="footer-copyright">
528528

529-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
529+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
530530

531531

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBFirmwareMetadata.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ <h4 class="method-subtitle">Declared In</h4>
403403
<footer>
404404
<div class="footer-copyright">
405405

406-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
406+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
407407

408408

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBFirmwareVersion.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ <h4 class="method-subtitle">Declared In</h4>
741741
<footer>
742742
<div class="footer-copyright">
743743

744-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
744+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
745745

746746

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBPebbleCentral.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ <h3 class="method-title"><code><a href="#//api/name/lastConnectedWatch">&ndash;&
726726

727727

728728

729-
<div class="method-subsection method-declaration"><code>- (PBWatch *)lastConnectedWatch</code></div>
729+
<div class="method-subsection method-declaration"><code>- (PBWatch *__nullable)lastConnectedWatch</code></div>
730730

731731

732732

@@ -977,7 +977,7 @@ <h4 class="method-subtitle">Declared In</h4>
977977
<footer>
978978
<div class="footer-copyright">
979979

980-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
980+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
981981

982982

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBResourceMetadata.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ <h4 class="method-subtitle">Declared In</h4>
220220
<footer>
221221
<div class="footer-copyright">
222222

223-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
223+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
224224

225225

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBSportsUpdate.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ <h4 class="method-subtitle">Declared In</h4>
442442
<footer>
443443
<div class="footer-copyright">
444444

445-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
445+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
446446

447447

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

PebbleKit-iOS.docset/Contents/Resources/Documents/Classes/PBVersionInfo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ <h4 class="method-subtitle">Declared In</h4>
708708
<footer>
709709
<div class="footer-copyright">
710710

711-
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-08</p>
711+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-12-11</p>
712712

713713

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

0 commit comments

Comments
 (0)