Skip to content

Commit 4df6aac

Browse files
committed
Releasing SDK v1.4.1
1 parent 2b1aa90 commit 4df6aac

File tree

33 files changed

+59
-26
lines changed

33 files changed

+59
-26
lines changed

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Beaconstac renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Beaconstac

7.22 MB
Binary file not shown.

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/Beaconstac.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/Beaconstac.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@
4949
@protocol BeaconstacDelegate <NSObject>
5050

5151
@optional
52+
/**
53+
* Sent to the delegate when one or more beacons are detected by the device for the first time.
54+
* This could be useful in getting list of beacons as soon as the device enters beacon region,
55+
* the app gets woken up in the background/foreground and returns a list of beacons
56+
*
57+
* @param beaconstac Beaconstac instance which is the sender of this message
58+
* @param beacons Array of CLBeacon objects.
59+
*/
60+
- (void)beaconstac:(Beaconstac*)beaconstac didRangeBeaconsForFirstTime:(NSArray*)beacons;
61+
5262
/**
5363
* Sent to the delegate when one or more beacons are detected by the device.
5464
*

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSAction.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSAction.h

File renamed without changes.

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSBeacon.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSBeacon.h

File renamed without changes.

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSBeaconManager.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSBeaconManager.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ typedef NS_ENUM (NSUInteger, MSBeaconAffinity)
7474
* Invoked when the user exits a monitored region.
7575
*/
7676
- (void)beaconManager:(MSBeaconManager*)manager didExitBeaconRegion:(CLRegion*)region;
77+
78+
/**
79+
* Invoked when beacons are ranged for the first time for the monitored region.
80+
*/
81+
- (void)beaconManager:(MSBeaconManager*)manager didRangeBeaconsForFirstTime:(NSArray*)beaconsArray onBeaconRegion:(CLRegion*)region;
7782
@end
7883

7984

@@ -113,6 +118,11 @@ typedef NS_ENUM (NSUInteger, MSBeaconAffinity)
113118
*/
114119
@property (strong, nonatomic) NSMutableDictionary *rangedBeacons;
115120

121+
/**
122+
* A boolean specifying if beacons are being ranged
123+
*/
124+
@property (nonatomic, readonly) BOOL isRangingBeacons;
125+
116126
/**
117127
* MSBeacon which is currently camped on
118128
*/

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSCard.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSCard.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
// THE SOFTWARE.
2222

23-
#import <Foundation/Foundation.h>
2423
#import "MSAction.h"
2524

2625
/**

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSConstants.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/**
3939
* SDK properties
4040
*/
41-
#define SDK_VERSION [[NSBundle bundleWithIdentifier:@"com.mobstac.BeaconstacData"] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
41+
#define SDK_VERSION @"1.4.1"
4242
#define EVENT_LOG_VERSION @1.1
4343

4444
/**

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSCustomAction.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSCustomAction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// THE SOFTWARE.
2222
//
2323

24-
#import <Beaconstac/Beaconstac.h>
24+
#import "MSAction.h"
2525

2626
@interface MSCustomAction : MSAction
2727

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSIdentity.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSIdentity.h

File renamed without changes.

BeaconstacSDK/Beaconstac.framework/Versions/1.4/Headers/MSLogger.h renamed to BeaconstacSDK/Beaconstac.framework/Versions/1.4.1/Headers/MSLogger.h

File renamed without changes.

0 commit comments

Comments
 (0)