Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [android] - validate if circle-ci var is unset | tobrun | 2018-07-26 | 1 | -4/+4 | |
| | ||||||
* | [iOS] Add fallbacks for name fields (#12387) | Lloyd Sheng | 2018-07-26 | 3 | -5/+25 | |
| | | | | | | | | * Add fallbacks for name fields * Add a fallback for `name_zh-Hant` * Update changelog | |||||
* | [ios] Updated podspecs and changelog for ios-v4.3.0-alpha.1 (#12486) | Jordan Kiley | 2018-07-25 | 4 | -4/+4 | |
| | ||||||
* | [core] Compress all shader source as a single corpus | John Firebaugh | 2018-07-25 | 29 | -3697/+1616 | |
| | ||||||
* | [core] Compress shader source code | John Firebaugh | 2018-07-25 | 26 | -2866/+3705 | |
| | ||||||
* | [android] - changelog for 6.4.0-alpha.1ios-v4.3.0-alpha.1android-v6.4.0-alpha.1 | Łukasz Paczos | 2018-07-25 | 1 | -3/+13 | |
| | ||||||
* | [ios, macos] Fixed typos in expression conversion error messages | Minh Nguyễn | 2018-07-25 | 1 | -2/+2 | |
| | ||||||
* | [darwin] Use FOUNDATION_EXTERN instead of plain extern | Jason Wray | 2018-07-24 | 12 | -41/+41 | |
| | | | | FOUNDATION_EXTERN is an alias for extern in most cases, but also covers us in the event that a method could be mismangled by the compiler as C++ (when we want C-style mangling, for Obj-C compatibility). | |||||
* | [ios] Simplify and (internally) document MGLPointRounded() | Jason Wray | 2018-07-24 | 2 | -1/+4 | |
| | | | | `UIScreen.nativeScale` is available beginning in iOS 8, so the conditional is no longer necessary. | |||||
* | [ios] Move private geometry symbol visibility definitions to header | Jason Wray | 2018-07-24 | 2 | -4/+2 | |
| | ||||||
* | [ios] Fix symbol mangling issue with MGLMapPointForCoordinate() | Jason Wray | 2018-07-24 | 2 | -3/+3 | |
| | | | | `MGLMapPointForCoordinate()` was `extern`-defined in a C header, but implemented in an Obj-C++ source file and mangled as a C++ symbol. `FOUNDATION_EXTERN` is C++-aware and will force C-style symbol mangling, which fixes the undefined symbol issue in consumer Obj-C projects. | |||||
* | [build] Remove obsolete bitrise.yml files | John Firebaugh | 2018-07-24 | 4 | -75/+0 | |
| | ||||||
* | [core] Use hand-rolled RTTI | John Firebaugh | 2018-07-24 | 28 | -26/+104 | |
| | ||||||
* | [core] Check all bucket dynamic_casts | John Firebaugh | 2018-07-24 | 15 | -34/+122 | |
| | | | | A mismatch can occur when a layer changes from one type to another. | |||||
* | [core] Replace expressions RTTI with enums + static cast | Bruno de Oliveira Abinader | 2018-07-24 | 29 | -64/+138 | |
| | ||||||
* | [core] coveredByChildren is false if at least one child is uncovered | Bruno de Oliveira Abinader | 2018-07-24 | 2 | -5/+55 | |
| | ||||||
* | Remove 'preinstall' | Dane Springmeyer | 2018-07-23 | 1 | -1/+0 | |
| | | | | | | | | This is an obsolete workaround for old npm versions that broke with bundling but also did not install deps predictably. Refs: - https://github.com/mapbox/node-pre-gyp/blob/master/README.md#configuring - https://github.com/mapbox/node-pre-gyp/issues/260 | |||||
* | [test] Add native ignore for symbol-cross-fade test. | Chris Loer | 2018-07-23 | 1 | -0/+1 | |
| | ||||||
* | [test] Bump gl-js pin for line-center tests. | Chris Loer | 2018-07-23 | 1 | -0/+0 | |
| | ||||||
* | [android, ios, macos] Generate symbol-placement: line-center wrappers | Chris Loer | 2018-07-23 | 7 | -32/+68 | |
| | ||||||
* | [core] Add `symbol-placement: line-center` | Chris Loer | 2018-07-23 | 11 | -47/+114 | |
| | | | | | - Remove unused/vestigial 'maxCameraDistance' - Create a single collision circle for line labels that are less than half the width of a collision circle | |||||
* | [build] Attempt to determine a likely base branch without a PR | John Firebaugh | 2018-07-23 | 1 | -0/+11 | |
| | | | | Walk backward through the history (maximum of 10 commits) until finding a commit on either master or release-*; assume that's the base branch. | |||||
* | [android] - fix circle ci configuration for building forked PRs | tobrun | 2018-07-23 | 1 | -16/+24 | |
| | ||||||
* | [build] Bump benchmark to v1.4.1 | Bruno de Oliveira Abinader | 2018-07-23 | 2 | -2/+2 | |
| | ||||||
* | Use Filter::serialize() in QMapboxGL::getFilter() | Asheem Mamoowala | 2018-07-23 | 1 | -8/+1 | |
| | ||||||
* | Keep original input for filters using legacy syntax. | Asheem Mamoowala | 2018-07-23 | 3 | -4/+92 | |
| | ||||||
* | [android] - fix accesstoken validation | tobrun | 2018-07-23 | 2 | -5/+32 | |
| | ||||||
* | [android] - replace deprecated javacompile with getJavaCompiler() | tobrun | 2018-07-23 | 1 | -1/+1 | |
| | ||||||
* | [ios] Mapbox's Location Manager new API. (#12013) | Fabian Guerra Soto | 2018-07-20 | 14 | -15/+781 | |
| | | | | | | * [ios] The new location manager API provides two new protocols MGLLocationManager and MGLLocationManagerDelegate to handle the location cycle and updates respectively. This enables developers to chose the appropriate location provider according to their needs, or transition between outdoors/indoors location updates. It does provide a default implementation based on CLLocationManager. | |||||
* | [build] Disable binary size checks for fork PRs | John Firebaugh | 2018-07-20 | 1 | -1/+7 | |
| | | | | We can't run the checks without potentially exposing the Github App private key to malicious PRs. | |||||
* | [build] See what happened when `npm install` fails | John Firebaugh | 2018-07-20 | 1 | -1/+5 | |
| | ||||||
* | [ios, macos, android] Add changelog entries | John Firebaugh | 2018-07-20 | 3 | -0/+10 | |
| | ||||||
* | [android] Test token strings for icon-image and text-field | John Firebaugh | 2018-07-20 | 2 | -0/+11 | |
| | ||||||
* | [ios, macos] Convert token strings to expressions on input | John Firebaugh | 2018-07-20 | 11 | -174/+79 | |
| | | | | Removes mgl_expressionByReplacingTokensWithKeyPaths and associated code. Converting on output is no longer necessary: from the prior commit, core converts token strings to expressions at parse time; all that's necessary is to ensure that the runtime styling API does so as well. | |||||
* | [core] Convert token strings to expressions | John Firebaugh | 2018-07-20 | 20 | -101/+166 | |
| | ||||||
* | [core] Move expression.cpp to expression directory | John Firebaugh | 2018-07-20 | 2 | -3/+1 | |
| | ||||||
* | [core] Replace {Source,Camera,Composite}Function with PropertyExpression | John Firebaugh | 2018-07-20 | 53 | -951/+702 | |
| | ||||||
* | [build] add nitpick step for verifying that dependencies are up-to-date and ↵upstream/vendor-gtest | Konstantin Käfer | 2018-07-20 | 3 | -2/+45 | |
| | | | | unmodified | |||||
* | [build] vendor Google Test | Konstantin Käfer | 2018-07-20 | 38 | -8/+31750 | |
| | ||||||
* | [android] - expose getMap on native_map_view | Tobrun | 2018-07-20 | 3 | -1/+7 | |
| | ||||||
* | fixed typo in error message | Justyna Janczyszyn | 2018-07-19 | 1 | -1/+1 | |
| | ||||||
* | [ios] Reorganize changelog for ios-v4.2.0 | Jason Wray | 2018-07-18 | 1 | -2/+5 | |
| | ||||||
* | [ios] Update podspecs for ios-v4.2.0 | Jason Wray | 2018-07-18 | 3 | -3/+3 | |
| | ||||||
* | [android] - update changelog for v6.3.0 final | Tobrun | 2018-07-18 | 1 | -3/+8 | |
| | ||||||
* | [android] VisibleRegion instrumentation tests | Łukasz Paczos | 2018-07-18 | 1 | -0/+342 | |
| | ||||||
* | [android] option to request the visible region restricted by the content padding | Łukasz Paczos | 2018-07-18 | 1 | -5/+32 | |
| | ||||||
* | Correct `MGL_MATCH ` documentation (#12378) | Lloyd Sheng | 2018-07-18 | 1 | -1/+1 | |
| | ||||||
* | [iOS] Fix unbalanced change delimiter crash (#12148) | Lloyd Sheng | 2018-07-18 | 2 | -1/+1 | |
| | | | Fixed a crash that occurred when the user started a gesture before the drift animation for a previous gesture was complete. | |||||
* | [android] Fix possibly race on undefined behavior | Thiago Marcos P. Santos | 2018-07-17 | 1 | -0/+1 | |
| | | | | | | | `runnable->iter = runnables.end()` assumes that `::end()` is a `static` or `constxpr` and thread-safe. This is likely to be true for most of the implementations. That said we cannot rely on undefined behavior and we should assume the worse case scenario. | |||||
* | [build] organize CMake targets in folders for IDEs | Konstantin Käfer | 2018-07-17 | 11 | -0/+23 | |
| |