summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [core] Added unit test for issue 15216upstream/mikhail_fix_assertionMikhail Pozdnyakov2019-07-251-0/+11
|
* [core] Fix assertion at RenderRasterLayer::prepare()Mikhail Pozdnyakov2019-07-252-2/+5
| | | | | It shall consider that image data might not be available until the source loads it.
* [ios, macos]MGLLoggingConfiguration can filter logs from core (#15120)m-stephen2019-07-2511-38/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [ios, macos] update proj config * [ios, macos] implement the logging logic * [ios, macos] update comments * [ios, macos] update mac os config * [ios, macos] re-generate sdk files * [ios, macos] re-generate sdk files json * [ios, macos]re-generate json files * [ios, macos] re-generate ios json files * [ios] change conditions to bit mask * [ios, macos]send messages to platform * [ios, macos] add changelogs * [ios, macos] revert `logging_nslog` * [ios, macos] add event name and code into log msg * [ios, macos] update changlog * [ios, macos] fix a nit * [ios, macos]Fix nits.
* [ios, build] Trigger external deploy jobs before long-running build tasksupstream/friedbunny-rearranges-deploy-job-orderJason Wray2019-07-241-1/+7
|
* [ios] Prepare ios-v5.2.0 releaseJason Wray2019-07-244-7/+22
|
* [core] GeometryCollection must not be implicitly copiedMikhail Pozdnyakov2019-07-247-38/+44
|
* [core] Optimize RenderLineLayer::queryIntersectsFeatureMikhail Pozdnyakov2019-07-241-11/+24
|
* [core] Default GeometryTileFeature::getGeometries() implementationMikhail Pozdnyakov2019-07-243-4/+6
|
* [core] Force getGeometries() return const refAlexander Shalamov2019-07-2414-26/+34
|
* [android] changelog for 8.2.0Łukasz Paczos2019-07-241-0/+6
|
* [core] Introduce VertexVector::extend() and use it in placement code.Mikhail Pozdnyakov2019-07-232-46/+44
|
* [core] Remove unused field from icon bufferAlexander Shalamov2019-07-231-1/+0
|
* [core] Update CrossTileSymbolLayerIndex unit testAlexander Shalamov2019-07-231-1/+8
|
* [core] Release quad data after vertex buffers are createdAlexander Shalamov2019-07-235-97/+180
|
* [android] remove layers first when clearing the styleŁukasz Paczos2019-07-222-11/+26
|
* [core] SymbolBacket creates collision buffers optionallyMikhail Pozdnyakov2019-07-225-40/+52
| | | | sizeof(SymbolBucket) : 1024 -> 704
* [core] Symbol bucket uses shared layoutMikhail Pozdnyakov2019-07-228-97/+103
| | | | sizeof(SymbolBucket): 2296 -> 1024
* [core] sizeof(SymbolBucket) 2312 -> 2296Mikhail Pozdnyakov2019-07-222-15/+22
|
* [android] 8.2.0 QA fixes for the test appŁukasz Paczos2019-07-227-10154/+14165
|
* [ios][andoid] Add change log entryMikhail Pozdnyakov2019-07-222-1/+11
|
* [core] Introduce RenderTileSetSource classMikhail Pozdnyakov2019-07-228-125/+132
| | | | Encapsulates the tiles update logic based on the given tile set.
* [core] Avoid unneeded tile sets copying at sources codeMikhail Pozdnyakov2019-07-229-33/+22
|
* [core] Render sources keep the existing tiles until the new tileset is readyMikhail Pozdnyakov2019-07-223-12/+24
| | | | | In Continuous map mode, keep the existing tiles if the new tileset is not yet available, thus providing smart style transitions without flickering.
* [tests] Bump GL JS to run render test for #15139Thiago Marcos P. Santos2019-07-195-0/+18
| | | | https://github.com/mapbox/mapbox-gl-js/pull/8510
* [core] Do not try to place a center anchor beyond the center of the lineThiago Marcos P. Santos2019-07-191-0/+2
| | | | | | | | | | Once the algorithm finds the center of the line, if placement is not possible, do not place the anchor. Previous code was trying to continue place the label beyond the center of the segment. Fixes #15139.
* Fix wrong #15065 nit fixAleksandar Stojiljkovic2019-07-191-2/+4
| | | | | | | Change in https://github.com/mapbox/mapbox-gl-native/pull/15065/commits/3ffc14a3250e5c4eb7dcaf0d1cc0e95c9de3c014 was a typo while addresssing review nit: while it didn't affect render tests it doesn't work properly in all cases. Fixes: #14844, #14779, #15039
* [android] - update dependencies, target SDK, support library (#15135)Tobrun2019-07-1934-236/+409
|
* Merge pull request #15170 from mapbox/tvn-snapshotTobrun2019-07-191-1/+1
| | | Update snapshot version for the q release
* [android] - update CI image of the release jobtobrun2019-07-191-1/+1
|
* [docs] Remove references to increasing offline tile limitHeather Stenson2019-07-183-6/+2
|
* [android] ignore a flaky MapSnapshotter test until #11669 is resolvedŁukasz Paczos2019-07-181-0/+2
|
* [android] changelog for 8.2.0-beta.1Łukasz Paczos2019-07-181-27/+37
|
* [android] fail MapSnapshotter test in case of an error returned from coreŁukasz Paczos2019-07-181-2/+5
|
* [ios] Prepare ios-v5.2.0-beta.1 releaseios-v5.2.0-beta.1Jason Wray2019-07-174-22/+23
|
* [core] Fix collision with content insetsAleksandar Stojiljkovic2019-07-174-18/+18
| | | | | | | | | | | | | | | Viewport center offset usage was wrongly submitted in #14664. It was part of alternative approach that used enlarged viewport. Existing and added tests were not sufficient to spot the regression, since the collision check padding is usually larger than the center offset x and y. Annotation picking has tolerance of only 10 pixels but no annotation integration test was using content insets. Usage of offset is not needed because `posMatrix` in e.g. `CollisionIndex::projectPoint(const mat4& posMatrix, const Point<float>& point)` already incorporates center offset (projection matrix) and the code in current master was just offsetting all by the value. Modified [ios] MGLAnnotationViewIntegrationTests.testSelectingAnnotationWithCenterOffset to use different insets. It verifies the fix. Fixes [iOS] Annotations are not selectable (added via iosapp menu) #15106: In case of #15106, view's original content insets is {top:88, bottom:34}, causing that center offset is {x:0, y:27} and selection with tolerance of 10 wouldn't select annotation. After tapping the view, so that the header gets removed, view's content insets get changed to {top:44, bottom:34}, center offset is {x:0, y:5} and annotation selection would work, as described in #15106. Fixes: #15106
* [ios] Add changelog entry for Cache Management API (#15131)Jordan Kiley2019-07-172-2/+7
|
* [ios, macos] Update Jazzy theme (#15125)Nadia Barbosa2019-07-174-10/+7
| | | | | | | | * [ios, macos] Update Jazzy theme module_version -> module-version * Update platform/macos/scripts/document.sh
* [ios] Add MGLMapViewZoomTestsJason Wray2019-07-172-0/+144
|
* [ios] Check center coordinate in MGLMapViewDirectionTestsJason Wray2019-07-171-4/+20
|
* [ios] Clean-up direction and compass testsJason Wray2019-07-173-55/+56
|
* [android] update Bintray's package nameŁukasz Paczos2019-07-172-1/+2
|
* Bump mapbox-gl-js versionMikhail Pozdnyakov2019-07-172-9/+11
|
* [core] Favor previous anchor only when still in the `text-variable-anchor` ↵Mikhail Pozdnyakov2019-07-171-10/+14
| | | | | | options Port of https://github.com/mapbox/mapbox-gl-js/pull/8473
* [ios, macos] Change "map ID" to "tileset ID" (#15116)upstream/15022_memory_consumptionHeather Stenson2019-07-1612-25/+27
| | | | | | | | * map id --> tileset id * styles map id -> style url * update changelog
* [ios] Cache Management API (#14978)Jordan Kiley2019-07-166-37/+288
|
* [android] - create map snapshot from testcasetobrun2019-07-161-6/+32
|
* [ios , macos] Exclude CJK resources from offline download by default (#14952)m-stephen2019-07-168-10/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [iOS, macOS] exclude CJK glyphs resources download by default. * [iOS, macOS] update iosapp * [iOS, macOS] update macOS * [iOS, macOS] update iOS change log * [iOS, macOS] update macOS change log * [iOS, macOS] update comment & add test cases * Update platform/darwin/test/MGLOfflineRegionTests.m Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com> * Update platform/darwin/test/MGLOfflineRegionTests.m Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com> * Update platform/darwin/test/MGLOfflineRegionTests.m Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com> * Update platform/ios/CHANGELOG.md Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com> * Update platform/macos/CHANGELOG.md Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com> * Update platform/darwin/test/MGLOfflineRegionTests.m Co-Authored-By: Jason Wray <friedbunny@users.noreply.github.com>
* [ios] Adds thread safe access to MGLNetworkConfiguration events dictionary ↵Julian Rex2019-07-154-6/+84
| | | | (#15113)
* [node] v4.2.0 releasenode-v4.2.0Josh Erb2019-07-152-3/+6
|
* Added changelog entryJulian Rex2019-07-141-0/+1
|