Skip to content

Commit 0c855e2

Browse files
committed
fix invalid geometry buffer
1 parent 6d6bfc6 commit 0c855e2

File tree

13 files changed

+31
-17
lines changed

13 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
All notable changes to this project will be documented in this file.
33
`navigine.framework` adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [2.0.4](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.0.4) / 2022-01-27
6+
* Fix invalid geometry buffer
7+
58
## [2.0.3](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.0.3) / 2022-01-25
69
* Fix beacon filters
710

Frameworks/navigine.framework/Headers/NCBeacon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ NAVIGINE_EXPORT
2020

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

23-
@property (nonatomic, readonly) int32_t power;
23+
@property (nonatomic, nullable, readonly) NSNumber * power;
2424

2525
@end

Frameworks/navigine.framework/Headers/NCEddystone.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ NAVIGINE_EXPORT
1818

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

21-
@property (nonatomic, readonly) int32_t power;
21+
@property (nonatomic, nullable, readonly) NSNumber * power;
2222

2323
@end

Frameworks/navigine.framework/Headers/NCLocationEditManager.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ NAVIGINE_EXPORT
1313
minor:(int32_t)minor
1414
point:(nonnull NCPoint *)point
1515
name:(nonnull NSString *)name
16-
power:(int32_t)power;
16+
power:(nullable NSNumber *)power;
1717

1818
- (void)editBeacon:(int32_t)subLocId
1919
uuid:(nonnull NSString *)uuid
2020
major:(int32_t)major
2121
minor:(int32_t)minor
2222
point:(nonnull NCPoint *)point
2323
name:(nonnull NSString *)name
24-
power:(int32_t)power;
24+
power:(nullable NSNumber *)power;
2525

2626
- (void)removeBeacon:(int32_t)subLocId
2727
uuid:(nonnull NSString *)uuid
@@ -33,14 +33,14 @@ NAVIGINE_EXPORT
3333
instanceId:(nonnull NSString *)instanceId
3434
point:(nonnull NCPoint *)point
3535
name:(nonnull NSString *)name
36-
power:(int32_t)power;
36+
power:(nullable NSNumber *)power;
3737

3838
- (void)editEddystone:(int32_t)subLocId
3939
namespaceId:(nonnull NSString *)namespaceId
4040
instanceId:(nonnull NSString *)instanceId
4141
point:(nonnull NCPoint *)point
4242
name:(nonnull NSString *)name
43-
power:(int32_t)power;
43+
power:(nullable NSNumber *)power;
4444

4545
- (void)removeEddystone:(int32_t)subLocId
4646
namespaceId:(nonnull NSString *)namespaceId
-32.7 MB
Binary file not shown.

Navigine.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'Navigine'
3-
spec.version = '2.0.3'
3+
spec.version = '2.0.4'
44
spec.license = { :type => 'Custom', :text => 'Navigine Licence'}
55
spec.summary = "iOS SDK for performing indoor navigation"
6-
spec.platform = :ios, "9.0"
6+
spec.platform = :ios, "11.0"
77
spec.homepage = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0'
88
spec.authors = { 'Pavel Tychinin' => 'p.tychinin@navigine.com' }
9-
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.0.3' }
9+
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.0.4' }
1010
spec.documentation_url = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0/wiki/Getting-Started'
1111
spec.vendored_frameworks = 'Frameworks/navigine.framework'
1212
# spec.vendored_libraries = 'Frameworks/navigine.framework/Navigine'

NavigineDemo/NavigineDemo.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@
450450
GCC_WARN_UNUSED_FUNCTION = YES;
451451
GCC_WARN_UNUSED_VARIABLE = YES;
452452
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
453-
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
453+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
454454
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
455455
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
456456
MTL_FAST_MATH = YES;
@@ -508,7 +508,7 @@
508508
GCC_WARN_UNUSED_FUNCTION = YES;
509509
GCC_WARN_UNUSED_VARIABLE = YES;
510510
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
511-
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
511+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
512512
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/NavigineDemo/Frameworks";
513513
MTL_ENABLE_DEBUG_INFO = NO;
514514
MTL_FAST_MATH = YES;

NavigineDemo/NavigineDemo/Frameworks/navigine.framework/Headers/NCBeacon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ NAVIGINE_EXPORT
2020

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

23-
@property (nonatomic, readonly) int32_t power;
23+
@property (nonatomic, nullable, readonly) NSNumber * power;
2424

2525
@end

NavigineDemo/NavigineDemo/Frameworks/navigine.framework/Headers/NCEddystone.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ NAVIGINE_EXPORT
1818

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

21-
@property (nonatomic, readonly) int32_t power;
21+
@property (nonatomic, nullable, readonly) NSNumber * power;
2222

2323
@end

NavigineDemo/NavigineDemo/Frameworks/navigine.framework/Headers/NCLocationEditManager.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ NAVIGINE_EXPORT
1313
minor:(int32_t)minor
1414
point:(nonnull NCPoint *)point
1515
name:(nonnull NSString *)name
16-
power:(int32_t)power;
16+
power:(nullable NSNumber *)power;
1717

1818
- (void)editBeacon:(int32_t)subLocId
1919
uuid:(nonnull NSString *)uuid
2020
major:(int32_t)major
2121
minor:(int32_t)minor
2222
point:(nonnull NCPoint *)point
2323
name:(nonnull NSString *)name
24-
power:(int32_t)power;
24+
power:(nullable NSNumber *)power;
2525

2626
- (void)removeBeacon:(int32_t)subLocId
2727
uuid:(nonnull NSString *)uuid
@@ -33,14 +33,14 @@ NAVIGINE_EXPORT
3333
instanceId:(nonnull NSString *)instanceId
3434
point:(nonnull NCPoint *)point
3535
name:(nonnull NSString *)name
36-
power:(int32_t)power;
36+
power:(nullable NSNumber *)power;
3737

3838
- (void)editEddystone:(int32_t)subLocId
3939
namespaceId:(nonnull NSString *)namespaceId
4040
instanceId:(nonnull NSString *)instanceId
4141
point:(nonnull NCPoint *)point
4242
name:(nonnull NSString *)name
43-
power:(int32_t)power;
43+
power:(nullable NSNumber *)power;
4444

4545
- (void)removeEddystone:(int32_t)subLocId
4646
namespaceId:(nonnull NSString *)namespaceId

0 commit comments

Comments
 (0)