Skip to content

Commit

Permalink
fix invalid geometry buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelTychinin committed Jan 27, 2022
1 parent 6d6bfc6 commit 0c855e2
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
`navigine.framework` adheres to [Semantic Versioning](http://semver.org/).

## [2.0.4](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.0.4) / 2022-01-27
* Fix invalid geometry buffer

## [2.0.3](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.0.3) / 2022-01-25
* Fix beacon filters

Expand Down
2 changes: 1 addition & 1 deletion Frameworks/navigine.framework/Headers/NCBeacon.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ NAVIGINE_EXPORT

@property (nonatomic, nonnull, readonly) NSString * uuid;

@property (nonatomic, readonly) int32_t power;
@property (nonatomic, nullable, readonly) NSNumber * power;

@end
2 changes: 1 addition & 1 deletion Frameworks/navigine.framework/Headers/NCEddystone.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ NAVIGINE_EXPORT

@property (nonatomic, nonnull, readonly) NSString * instanceId;

@property (nonatomic, readonly) int32_t power;
@property (nonatomic, nullable, readonly) NSNumber * power;

@end
8 changes: 4 additions & 4 deletions Frameworks/navigine.framework/Headers/NCLocationEditManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ NAVIGINE_EXPORT
minor:(int32_t)minor
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)editBeacon:(int32_t)subLocId
uuid:(nonnull NSString *)uuid
major:(int32_t)major
minor:(int32_t)minor
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)removeBeacon:(int32_t)subLocId
uuid:(nonnull NSString *)uuid
Expand All @@ -33,14 +33,14 @@ NAVIGINE_EXPORT
instanceId:(nonnull NSString *)instanceId
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)editEddystone:(int32_t)subLocId
namespaceId:(nonnull NSString *)namespaceId
instanceId:(nonnull NSString *)instanceId
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)removeEddystone:(int32_t)subLocId
namespaceId:(nonnull NSString *)namespaceId
Expand Down
Binary file modified Frameworks/navigine.framework/navigine
Binary file not shown.
6 changes: 3 additions & 3 deletions Navigine.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |spec|
spec.name = 'Navigine'
spec.version = '2.0.3'
spec.version = '2.0.4'
spec.license = { :type => 'Custom', :text => 'Navigine Licence'}
spec.summary = "iOS SDK for performing indoor navigation"
spec.platform = :ios, "9.0"
spec.platform = :ios, "11.0"
spec.homepage = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0'
spec.authors = { 'Pavel Tychinin' => 'p.tychinin@navigine.com' }
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.0.3' }
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.0.4' }
spec.documentation_url = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0/wiki/Getting-Started'
spec.vendored_frameworks = 'Frameworks/navigine.framework'
# spec.vendored_libraries = 'Frameworks/navigine.framework/Navigine'
Expand Down
4 changes: 2 additions & 2 deletions NavigineDemo/NavigineDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
Expand Down Expand Up @@ -508,7 +508,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ NAVIGINE_EXPORT

@property (nonatomic, nonnull, readonly) NSString * uuid;

@property (nonatomic, readonly) int32_t power;
@property (nonatomic, nullable, readonly) NSNumber * power;

@end
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ NAVIGINE_EXPORT

@property (nonatomic, nonnull, readonly) NSString * instanceId;

@property (nonatomic, readonly) int32_t power;
@property (nonatomic, nullable, readonly) NSNumber * power;

@end
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ NAVIGINE_EXPORT
minor:(int32_t)minor
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)editBeacon:(int32_t)subLocId
uuid:(nonnull NSString *)uuid
major:(int32_t)major
minor:(int32_t)minor
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)removeBeacon:(int32_t)subLocId
uuid:(nonnull NSString *)uuid
Expand All @@ -33,14 +33,14 @@ NAVIGINE_EXPORT
instanceId:(nonnull NSString *)instanceId
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)editEddystone:(int32_t)subLocId
namespaceId:(nonnull NSString *)namespaceId
instanceId:(nonnull NSString *)instanceId
point:(nonnull NCPoint *)point
name:(nonnull NSString *)name
power:(int32_t)power;
power:(nullable NSNumber *)power;

- (void)removeEddystone:(int32_t)subLocId
namespaceId:(nonnull NSString *)namespaceId
Expand Down
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions NavigineDemo/NavigineDemo/ViewControllers/ProfileController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,16 @@ extension ProfileController: UITableViewDelegate, UITableViewDataSource {
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
NavigineApp.mResourceManager?.uploadLogFile(self.mLogsList[indexPath.row], listener: self)
}
}

extension ProfileController : NCResourceUploadListener {
func onUploaded() {
print("success")
}

func onFailed(_ error: Error?) {
print("fail \(String(describing: error))")
}
}

0 comments on commit 0c855e2

Please sign in to comment.