Skip to content

Commit ff9986f

Browse files
committed
Releasing SDK v1.1.1
1 parent 89b1ba8 commit ff9986f

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed
22.7 KB
Binary file not shown.

BeaconstacSDK/Beaconstac.framework/Versions/1.0/Headers/MSBeaconManager.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ typedef NS_ENUM (NSUInteger, MSBeaconAffinity)
9595
/**
9696
* Beacon identification string. e.g. com.mobstac.foo
9797
*/
98-
@property (strong, nonatomic) NSString *beaconIdentifier;
98+
@property (strong, nonatomic) NSString *regionIdentifier;
9999

100100
/**
101101
* UUID of the beacon.
@@ -113,6 +113,11 @@ typedef NS_ENUM (NSUInteger, MSBeaconAffinity)
113113
*/
114114
@property (strong, nonatomic) NSMutableDictionary *rangedBeacons;
115115

116+
/**
117+
* MSBeacon which is currently camped on
118+
*/
119+
@property (strong, nonatomic) MSBeacon *campedOnBeacon;
120+
116121
/**
117122
* Initializes a MSBeaconManager to monitor all beacons with the
118123
* given UUID and identifier.

BeaconstacSDK/Beaconstac.framework/Versions/1.0/Headers/MSConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
/**
3838
* SDK properties
3939
*/
40-
#define SDK_VERSION @"1.1"
40+
#define SDK_VERSION @"1.1.1"
4141
#define EVENT_LOG_VERSION @1.1
4242

4343
/**

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v1.1.1 released on August 12, 2015
2+
3+
* Rules assigned to Tags will trigger callbacks when camped on the tagged beacon
4+
* Added a property in MSBeaconManager to get the currently campedOnBeacon
5+
* Fixed a bug which prevented Exit Rules to not trigger if there were multiple Exit Rules on same beacon
6+
17
### v1.1 released on August 4, 2015
28

39
* Added MSTags class to enable grouping beacons by tags

Examples/BeaconstacExample/BeaconstacExample.xcodeproj/project.pbxproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
7DDF9EA81B2EE5D0001C142B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7DDF9EA61B2EE5D0001C142B /* Main.storyboard */; };
1414
7DDF9EAA1B2EE5D0001C142B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7DDF9EA91B2EE5D0001C142B /* Images.xcassets */; };
1515
7DDF9EAD1B2EE5D0001C142B /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DDF9EAB1B2EE5D0001C142B /* LaunchScreen.xib */; };
16-
7DDF9EC31B2EE6A8001C142B /* Beaconstac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDF9EC21B2EE6A8001C142B /* Beaconstac.framework */; };
1716
7DDF9EC61B2EE6C4001C142B /* BeaconstacData.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7DDF9EC51B2EE6C4001C142B /* BeaconstacData.bundle */; };
1817
7DDF9EC81B2EE7FA001C142B /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDF9EC71B2EE7FA001C142B /* CoreLocation.framework */; };
1918
7DDF9ECA1B2EE801001C142B /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDF9EC91B2EE801001C142B /* CoreData.framework */; };
2019
7DDF9ECC1B2EE81E001C142B /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDF9ECB1B2EE81E001C142B /* CoreBluetooth.framework */; };
2120
7DDF9ECE1B2EE82C001C142B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDF9ECD1B2EE82C001C142B /* SystemConfiguration.framework */; };
2221
7DDF9ED81B2EF190001C142B /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDF9ED71B2EF190001C142B /* WebViewController.m */; };
22+
7DEE3CEA1B74AF8E0002C2D2 /* Beaconstac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DEE3CE91B74AF8E0002C2D2 /* Beaconstac.framework */; };
2323
/* End PBXBuildFile section */
2424

2525
/* Begin PBXFileReference section */
@@ -33,7 +33,6 @@
3333
7DDF9EA71B2EE5D0001C142B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
3434
7DDF9EA91B2EE5D0001C142B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
3535
7DDF9EAC1B2EE5D0001C142B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
36-
7DDF9EC21B2EE6A8001C142B /* Beaconstac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Beaconstac.framework; path = ../../../BeaconstacSDK/Beaconstac.framework; sourceTree = "<group>"; };
3736
7DDF9EC51B2EE6C4001C142B /* BeaconstacData.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = BeaconstacData.bundle; path = ../../../BeaconstacSDK/Beaconstac.framework/Versions/1.0/Resources/BeaconstacData.bundle; sourceTree = "<group>"; };
3837
7DDF9EC71B2EE7FA001C142B /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
3938
7DDF9EC91B2EE801001C142B /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
@@ -43,6 +42,7 @@
4342
7DDF9ED11B2EE845001C142B /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
4443
7DDF9ED61B2EF190001C142B /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebViewController.h; sourceTree = "<group>"; };
4544
7DDF9ED71B2EF190001C142B /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebViewController.m; sourceTree = "<group>"; };
45+
7DEE3CE91B74AF8E0002C2D2 /* Beaconstac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Beaconstac.framework; path = ../../../BeaconstacSDK/Beaconstac.framework; sourceTree = "<group>"; };
4646
/* End PBXFileReference section */
4747

4848
/* Begin PBXFrameworksBuildPhase section */
@@ -54,7 +54,7 @@
5454
7DDF9ECC1B2EE81E001C142B /* CoreBluetooth.framework in Frameworks */,
5555
7DDF9ECA1B2EE801001C142B /* CoreData.framework in Frameworks */,
5656
7DDF9EC81B2EE7FA001C142B /* CoreLocation.framework in Frameworks */,
57-
7DDF9EC31B2EE6A8001C142B /* Beaconstac.framework in Frameworks */,
57+
7DEE3CEA1B74AF8E0002C2D2 /* Beaconstac.framework in Frameworks */,
5858
);
5959
runOnlyForDeploymentPostprocessing = 0;
6060
};
@@ -107,14 +107,14 @@
107107
7DDF9EC41B2EE6B0001C142B /* Frameworks */ = {
108108
isa = PBXGroup;
109109
children = (
110+
7DEE3CE91B74AF8E0002C2D2 /* Beaconstac.framework */,
110111
7DDF9ED11B2EE845001C142B /* MediaPlayer.framework */,
111112
7DDF9ECF1B2EE83F001C142B /* AVFoundation.framework */,
112113
7DDF9ECD1B2EE82C001C142B /* SystemConfiguration.framework */,
113114
7DDF9ECB1B2EE81E001C142B /* CoreBluetooth.framework */,
114115
7DDF9EC71B2EE7FA001C142B /* CoreLocation.framework */,
115116
7DDF9EC91B2EE801001C142B /* CoreData.framework */,
116117
7DDF9EC51B2EE6C4001C142B /* BeaconstacData.bundle */,
117-
7DDF9EC21B2EE6A8001C142B /* Beaconstac.framework */,
118118
);
119119
name = Frameworks;
120120
sourceTree = "<group>";
@@ -311,7 +311,7 @@
311311
CODE_SIGN_IDENTITY = "iPhone Developer";
312312
FRAMEWORK_SEARCH_PATHS = (
313313
"$(inherited)",
314-
"/Users/kdeo/Dropbox/Mobstac/Github-iOS-SDK/BeaconstacSDK",
314+
../../BeaconstacSDK,
315315
);
316316
INFOPLIST_FILE = BeaconstacExample/Info.plist;
317317
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -326,7 +326,7 @@
326326
CODE_SIGN_IDENTITY = "iPhone Developer";
327327
FRAMEWORK_SEARCH_PATHS = (
328328
"$(inherited)",
329-
"/Users/kdeo/Dropbox/Mobstac/Github-iOS-SDK/BeaconstacSDK",
329+
../../BeaconstacSDK,
330330
);
331331
INFOPLIST_FILE = BeaconstacExample/Info.plist;
332332
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -353,6 +353,7 @@
353353
7DDF9EBE1B2EE5D0001C142B /* Release */,
354354
);
355355
defaultConfigurationIsVisible = 0;
356+
defaultConfigurationName = Release;
356357
};
357358
/* End XCConfigurationList section */
358359
};

0 commit comments

Comments
 (0)