Skip to content

Commit

Permalink
Updated for version 3.4.2 of the Adonit iOS SDK.
Browse files Browse the repository at this point in the history
  • Loading branch information
adonitRDSW committed Sep 22, 2017
1 parent 272ef5f commit 3b9c64d
Show file tree
Hide file tree
Showing 27 changed files with 22 additions and 2 deletions.
Binary file modified AdonitSDK.bundle/DebugOptionsTableViewCell.nib
Binary file not shown.
Binary file modified AdonitSDK.bundle/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AdonitSDK.bundle/JotSettings.storyboardc/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AdonitSDK.framework/Versions/A/AdonitSDK
Binary file not shown.
9 changes: 8 additions & 1 deletion AdonitSDK.framework/Versions/A/Headers/JotConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ extern NSUInteger const JOT_MIN_PRESSURE;
extern NSUInteger const JOT_MAX_PRESSURE;

extern NSString * const JotStylusManagerDidChangeConnectionStatus;
extern NSString * const JotStylusManagerDidUpdateConnectionStatus;
extern NSString * const JotStylusManagerDidChangeConnectionStatusStatusKey;

extern NSString * const JotStylusManagerDidChangeEnabledStatus;
Expand Down Expand Up @@ -97,7 +98,11 @@ typedef NS_ENUM(NSUInteger, JotConnectionStatus) {
/** No Jot is connected, but the most recently used Jot will be automatically connected to when available */
JotConnectionStatusDisconnected,
/** A Jot is power off */
JotConnectionStatusPowerOff
JotConnectionStatusPowerOff,
/** A Jot is not support for this platform */
JotConnectionStatusStylusNotSupportThePlatform,
/** A Jot is not support for this platform by swap stylus*/
JotConnectionStatusSwapStylusNotSupportThePlatform
};

/** The maximum length for a friendly name */
Expand Down Expand Up @@ -135,6 +140,8 @@ typedef NS_ENUM(NSInteger, JotTouchSDKErrorType) {
JotTouchSDKErrorTypeResetFailure = 103,
/** Used when an operation is requested while no stylus is connected */
JotTouchSDKErrorTypeStylusNotConnected = 104,
/** Used when stylus try to connect with unsupported iPad */
JotTouchSDKErrorTypeStylusNotSupportedOnTablet = 105,
/** Used when an invalid storage index is requested */
JotTouchSDKErrorTypeStorageIndexOutOfBounds = 301,
/** Used when an invalid storage location is requested */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
*/
- (void)jotStylusUnsupported;

/** Sent when the device does not support stylus
*/
- (void)jotStylusPlatformNotSupported;

/** Sent when the device does not support stylus by swap stylus
*/
- (void)jotStylusPlatformNotSupportedBySwap;

/**
* Sent when a discovery attempt is cancelled
*/
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#Change Log for AdonitSDK (iOS)

#v3.4.2

**SDK**
- disable Pixel Pro connection on non-iPad Pro devices

#v3.4.1

**SDK**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Adonit SDK for iOS v3.4.1
#Adonit SDK for iOS v3.4.2

##Overview
The Adonit iOS SDK is a free framework for iOS that provides you with the necessary tools to integrate a complete sketching experience in your apps when used with Adonit's line of [Bluetooth connected styluses](http://adonit.net/jot). It includes support for for the following features:
Expand Down

0 comments on commit 3b9c64d

Please sign in to comment.