Skip to content

Commit 475881f

Browse files
PavelTychininPavel Tychinin
and
Pavel Tychinin
authored
Release 11032023 (#10)
* Release 11032023 * Release 11032023 --------- Co-authored-by: Pavel Tychinin <[email protected]>
1 parent 9b6c00e commit 475881f

File tree

109 files changed

+28
-530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+28
-530
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.4.2](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.4.2) / 2023-10-13
6+
* Refactor LocationView
7+
* Fix race condition in render thread
8+
9+
## [2.4.1](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.4.1) / 2023-10-20
10+
* Hotfix ios deployment target 13
11+
512
## [2.4.0](https://github.com/Navigine/navigine_ios_framework/releases/tag/v.2.4.0) / 2023-10-13
613
* Refactor LocationView
714
* customization methods moved to LocationWindow

Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLocationView.h

-15
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,8 @@ DEFAULT_EXPORT_ATTRIBUTE
2323

2424
- (id)initWithFrame:(CGRect)frame;
2525

26-
// - (void)applyFilter:(NSString *)filer layer:(NSString *)layer;
27-
28-
29-
// @property (weak, nonatomic, nullable) id<NCLocationViewListener> locationViewListener;
30-
31-
3226
@property (nonatomic, readonly) NCLocationWindow* locationWindow;
3327

34-
35-
// #pragma mark Memory Management
36-
37-
// /**
38-
// Reduce memory usage by freeing currently unused resources.
39-
// */
40-
// - (void)didReceiveMemoryWarning;
41-
42-
4328
@end
4429

4530
NS_ASSUME_NONNULL_END

Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLocationWindow.h

+2-4
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,11 @@ DEFAULT_EXPORT_ATTRIBUTE
6868
*
6969
* @param camera The new camera position
7070
* @param duration The animation duration in milliseconds
71-
* @param animationType The type of easing animation
7271
* @param completion A callback to execute when the animation completes
7372
*
7473
*/
7574
- (void)flyTo:(nonnull NCCamera *)camera
7675
duration:(int32_t)duration
77-
animationType:(NCAnimationType)animationType
7876
callback:(nullable NCCameraCallback)callback;
7977

8078
/**
@@ -85,13 +83,13 @@ animationType:(NCAnimationType)animationType
8583
*
8684
* @param camera The new camera position
8785
* @param duration Duration of the animation in milliseconds (-1 for default duration)
88-
* @param speed Specified speed scaling factor (1 for default speed)
86+
* @param animationType The type of easing animation
8987
* @param callback A callback to execute when the animation completes
9088
*
9189
*/
9290
- (void)moveTo:(nonnull NCCamera *)camera
9391
duration:(int32_t)duration
94-
speed:(float)speed
92+
animationType:(NCAnimationType)animationType
9593
callback:(nullable NCCameraCallback)callback;
9694

9795
- (void)applyFilter:(nonnull NSString *)filter

0 commit comments

Comments
 (0)