summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
...
* [ios] snap to north if interaction ends within ±7°Jason Wray2015-12-241-0/+1
| | | | First proposed in #938, implemented in #1059, reverted in #1064.
* [ios] vary annotation bounds fit padding based on view sizeJason Wray2015-12-231-0/+1
| | | | Fix #3392, #3110
* Merge branch 'master' into release-android-v2.4.0Brad Leege2015-12-211-0/+1
|\ | | | | | | | | # Conflicts: # src/mbgl/map/transform.cpp
| * [ios, osx] Better zoom level–altitude conversionMinh Nguyễn2015-12-201-0/+1
| | | | | | | | | | | | Greatly simplified conversions between zoom level and altitude. Adjusted field of view to more closely match MapKit. Conversions are now well within the same order of magnitude as MapKit at all latitudes. Fixes #2266.
* | [android] #3354 - Android 3.0.0 Change Logandroid-v3.0.0Brad Leege2015-12-211-0/+7
|/
* [ios] Updated changelogMinh Nguyễn2015-12-151-0/+1
|
* [core] Corrected flying trajectory; pitched flightMinh Nguyễn2015-12-151-0/+1
| | | | | | Corrected some fairly opaque code that was incorrectly ported from GL JS the first time around in #3171, causing the trajectory to extend far into the Earth’s orbit. Also transition pitch while flying, call transition frame/finish callback functions, and recognize the same “speed” and “curve” parameters that GL JS does. Fixes #3296, fixes #3297.
* [android] #3192 - Updating ChangelogBrad Leege2015-12-141-1/+9
|
* [ios] Sort candidate annotations by proximity to tapMinh Nguyễn2015-12-131-0/+2
| | | | | | If you tap near a tight cluster of annotations, the annotation directly beneath your finger should be selected first. Previously, the annotations within the query bounds would be selected in order from oldest to newest, which was counterintuitive. The new behavior does sometimes make it more difficult to cycle through the entire cluster, but the previous behavior often got in the way anyways, as your finger would wind up atop a callout view for an annotation farther south. Also updated the changelog.
* fix erroneous changelogJustin R. Miller2015-12-081-1/+2
|
* update changelog for ios-v3.0.1Justin R. Miller2015-12-081-0/+3
|
* [ios] fix CoreTelephony crash (by removing it)Jason Wray2015-12-021-0/+1
| | | | Fix #3112, ref #2581
* Merge branch 'release-ios-v3.0.0'Justin R. Miller2015-11-301-0/+3
|\
| * added some missing changelog entriesJustin R. Miller2015-11-231-0/+3
| |
| * [iOS] Set application root as asset rootMinh Nguyễn2015-11-201-0/+1
| | | | | | | | | | | | As of #2746, we no longer bundle any styles with the SDK, so the asset: URL scheme is unused. Instead, point asset: to the application root for developer convenience and consistency with the Android and default asset roots. Also fixed an issue that prevented relative URLs from being treated as asset: URLs. Fixes #1208, fixes #3050.
| * Separate heading for iOS SDK 3.0.0Minh Nguyễn2015-11-191-0/+2
| |
| * [ios] update changelog for willStart/didFinishLoadingJason Wray2015-11-181-0/+1
| |
* | [core] [iOS] Completion handlers for animated methodsMinh Nguyễn2015-11-251-0/+1
| | | | | | | | | | | | Added transition frame and finish functions to CameraOptions. Added Objective-C equivalents to the three main entry points to easeTo() in MGLMapView. Fixes #1581.
* | Corrected changelogMinh Nguyễn2015-11-241-1/+1
| | | | | | | | [skip ci]
* | Attach compass gesture recognizer to compass viewMinh Nguyễn2015-11-241-0/+4
| | | | | | | | Fixes #3099.
* | [iOS] Set application root as asset rootMinh Nguyễn2015-11-201-0/+1
| | | | | | | | | | | | As of #2746, we no longer bundle any styles with the SDK, so the asset: URL scheme is unused. Instead, point asset: to the application root for developer convenience and consistency with the Android and default asset roots. Also fixed an issue that prevented relative URLs from being treated as asset: URLs. Fixes #1208, fixes #3050.
* | [ios] update changelog for willStart/didFinishLoadingJason Wray2015-11-181-0/+1
|/
* Updated changelogMinh Nguyễn2015-11-111-1/+1
| | | | [skip ci]
* Updated changelogMinh Nguyễn2015-11-091-0/+1
|
* [iOS] Replaced deprecated podspec flagMinh Nguyễn2015-11-091-0/+1
| | | | | | Per https://github.com/mapbox/mapbox-gl-native/issues/1870#issuecomment-132417161. ref CocoaPods/CocoaPods#3573
* Remove constraints instead of deactivating themMinh Nguyễn2015-11-091-0/+1
| | | | | | Avoid piling up lots of deactivated constraints. Also avoid trying to deactivate constraints that have already been removed from the view hierarchy due to a change in view controllers. Fixes #2020.
* [core] Update after final frame of transitionMinh Nguyễn2015-11-061-0/+1
| | | | | | | | The final frame is self-destructing – it destroys the frame and finish functions – so technically we’re no longer inTransition(). Yet there still needs to be an update after that final frame. Also, avoid a redundant change notification on the last frame. (It would come too late, after the DidChange notification, anyhow.) Fixes #2946.
* [android] - Adding Android SDK releases to changelogBrad Leege2015-11-031-0/+21
|
* [core][iOS] Source iOS styles from default_stylesMinh Nguyễn2015-10-301-0/+1
| | | | | | | | | | Moved mbgl::util::default_styles to a more appropriate location, where iOS platform code can also find it. Moved -[MGLMapView bundledStyleURLs] (which is now deprecated) and the style switcher in iosapp to default_styles. Added a collection of convenience methods for getting style URLs. It makes little sense to layer an enum atop this, as MapKit does, because MGLMapView styles aren’t limited to this set. A good analogy is UIColor. This also makes for a good entry point for future runtime styling APIs. Introduced independent constants for each default style, because it’s more common to need access to a particular style than to iterate over them. This fact is apparent in the MGLStyle class, which now uses macros and assertions to ensure that it’s kept up-to-date with changes in default_styles. /ref #1462
* Update changelog for #2643Jason Wray2015-10-291-0/+1
|
* Updated changelog for #2770Minh Nguyễn2015-10-261-0/+1
|
* Typo in iOS changelogMinh Nguyễn2015-10-231-1/+1
| | | [skip ci]
* [iOS] Replaced styleID property with styleURL__ inspectableMinh Nguyễn2015-10-221-0/+1
| | | | | | The new styleURL__ inspectable property is carefully named to masquerade as a URL property in Interface Builder, even though IB supports no such thing. If the user enters an invalid URL into the “Style URL” inspectable, throw an error instead of silently setting the style to the default. This check is not required in -setStyleURL:, which takes a real NSURL.
* [iOS] Updated changelog for #2700Minh Nguyễn2015-10-211-0/+1
|
* [ios] remove CoreTelephony dependencyJason Wray2015-10-191-0/+1
| | | | | | Cellular carrier name and connectivity level will now only be sent if the developer independently chooses to link the CoreTelephony framework in their app.
* Break lines on com­mon­ly un­spaced punc­tu­a­tionMinh Nguyễn2015-10-131-0/+1
| | | | | | Par­ti­cu­lar­ly hy­phens and soft hy­phens. Fixes #2595.
* update changelog for new iOS delegate methodJustin R. Miller2015-10-121-0/+1
|
* [iOS] Updated CHANGELOGMinh Nguyễn2015-10-071-0/+1
|
* Ask contributors to update changelogs incrementallyMinh Nguyễn2015-10-071-0/+7
| | | | Also seeded the changelog with changes in master.
* update changelog for ios-v2.1.2Justin R. Miller2015-09-151-0/+4
|
* update changelog for ios-v2.1.1Justin R. Miller2015-09-151-0/+4
|
* update changelog for ios-v2.1.0Justin R. Miller2015-09-141-0/+19
|
* updates for "iOS SDK" series releasesJustin R. Miller2015-08-241-0/+8
|
* Updated changelog for 0.5.1Minh Nguyễn2015-07-131-0/+6
|
* Replaced release notes for 0.5.0Minh Nguyễn2015-07-101-4/+11
| | | | Replaced the release notes with more detailed ones from <https://github.com/mapbox/mapbox-gl-native/milestones>. This change also fixes a build error due to a reference to a method that had been removed.
* updated changelog for 0.5.0Justin R. Miller2015-07-091-0/+22
|
* fixes #1756: call out breaking changesJustin R. Miller2015-06-191-3/+3
|
* another symbol fix for appledoc parsingJustin R. Miller2015-06-191-1/+1
|
* slight changelog tweaks to avoid appledoc problemsJustin R. Miller2015-06-191-1/+1
|
* fixes #1756: update changelog for 0.4.0Justin R. Miller2015-06-191-0/+24
|