Skip to content

Commit

Permalink
Propagating firmware update over a mesh network. ESTMeshManager enabl…
Browse files Browse the repository at this point in the history
…es sending mesh settings confirmations. Removing a device from a mesh network.
  • Loading branch information
chwastek committed Jan 30, 2017
1 parent 2501b63 commit 029f4a6
Show file tree
Hide file tree
Showing 21 changed files with 17 additions and 901 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 4.13.0 (January 30, 2017)

Features:

- Propagating firmware update over a mesh network.
- ESTMeshManager enables sending mesh settings confirmations for meshed beacons in range.
- Removing a device from a mesh network.

Improvements:

- Improved firmware update for Location Beacons.

## 4.12.2 (January 5, 2017)

Fixes:
Expand Down
4 changes: 2 additions & 2 deletions EstimoteSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "EstimoteSDK"
s.version = "4.12.2"
s.version = "4.13.0"
s.summary = "iOS library for Estimote iBeacon devices"
s.homepage = "http://estimote.com"
s.author = { "Estimote, Inc" => "[email protected]" }
s.platform = :ios
s.source = { :git => "https://github.com/Estimote/iOS-SDK.git", :tag => "4.12.2" }
s.source = { :git => "https://github.com/Estimote/iOS-SDK.git", :tag => "4.13.0" }
s.source_files = 'EstimoteSDK/EstimoteSDK.framework/Versions/A/Headers/*.h'
s.vendored_frameworks = 'EstimoteSDK/EstimoteSDK.framework'
s.ios.deployment_target = '7.0'
Expand Down
Binary file modified EstimoteSDK/EstimoteSDK.framework/Versions/A/EstimoteSDK
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ typedef NS_ENUM(NSInteger, ESTDeviceSettingsManagerError)
/**
* Group of settings related to Generic Attribute Profile.
*/
@property (nonatomic, strong, readonly) ESTSettingsEddystoneConfigurationService *eddystoneConfigurationService;
@property (nonatomic, readonly) ESTSettingsEddystoneConfigurationService *eddystoneConfigurationService;


#pragma mark - Advanced Settings API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (instancetype)initWithCloudDictionary:(NSDictionary *)dictionary;

/**
* Method for returning dictionary represantation of advertising time schedule settings.
*/
- (NSDictionary *)cloudDictionary;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (ESTDeviceSettings *)settingsUpdatedWithDeviceSettings:(ESTDeviceSettings *)deviceSettings;

/**
* Method for returning dictionary represantation of device's settings.
*/
- (NSDictionary *)cloudDictionary;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@ typedef NS_ENUM(NSInteger, ESTDeviceSettingsAdvertiserSettingsPower)
*/
- (void)updateWithAdvertiserSettings:(ESTDeviceSettingsAdvertiser *)advertiserSettings;

/**
* Method for returning dictionary represantation of advertiser settings.
*/
- (NSDictionary *)cloudDictionary;

@end

NS_ASSUME_NONNULL_END

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)updateWithGeneralSettings:(ESTDeviceSettingsGeneral *)generalSettings;

/**
* Method for returning dictionary represantation of general settings.
*/
- (NSDictionary *)cloudDictionary;

@end

NS_ASSUME_NONNULL_END

This file was deleted.

Loading

0 comments on commit 029f4a6

Please sign in to comment.