Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [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 |
| | |||||
* | [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. | ||||
* | [android] bump SNAPSHOT version building on master to 6.4.0 | Łukasz Paczos | 2018-07-17 | 1 | -1/+1 |
| | |||||
* | [android] harden map events creation | Łukasz Paczos | 2018-07-17 | 1 | -1/+3 |
| | |||||
* | [android] - bump used gradle tools version | tobrun | 2018-07-17 | 1 | -1/+1 |
| | |||||
* | [android] - bump kotlin, timber and okhttp to most recent stable versions | Tobrun | 2018-07-16 | 1 | -3/+3 |
| | |||||
* | [build] Move all mason_use statements to a single file | John Firebaugh | 2018-07-13 | 1 | -5/+0 |
| | | | | So its checksum can be used in a CI cache key name. | ||||
* | [android] - add geojson regression tests for java method look up from JNI | tobrun | 2018-07-13 | 1 | -13/+103 |
| | |||||
* | [android] - add convenience method for destroyed state on MapView, can be ↵ | tobrun | 2018-07-12 | 3 | -4/+19 |
| | | | | used to determine if an asynchrous result should be set on map. | ||||
* | [android] - validate if gesture detector is able to handle gesture | tobrun | 2018-07-12 | 1 | -2/+6 |
| | |||||
* | [android] - bumped telemetry to v3.1.4 | Łukasz Paczos | 2018-07-09 | 1 | -1/+1 |
| | |||||
* | [android] - remove unique LatLng validation of LatLngBounds builder | tobrun | 2018-07-09 | 2 | -35/+35 |
| | |||||
* | [android] - fix jni method lookup of GeometryCollection accessor geometries, ↵ | tobrun | 2018-07-09 | 2 | -1/+50 |
| | | | | add regression test | ||||
* | [android] - added DraggableMarkerActivity | Łukasz Paczos | 2018-07-06 | 5 | -13/+360 |
| | |||||
* | [android] - added Kotlin dependencies to the test app | Łukasz Paczos | 2018-07-06 | 3 | -5/+15 |
| | |||||
* | [docs] Add changelog entries for #12294 | Chris Loer | 2018-07-05 | 1 | -4/+8 |
| | |||||
* | [android] - update changelog for release v6.3.0-alpha.2android-v6.3.0-alpha.2 | Tobrun | 2018-07-05 | 1 | -0/+5 |
| | |||||
* | [core] - add LatLng for screencoordinate to mapsnapshotter | tobrun | 2018-07-05 | 5 | -10/+24 |
| | |||||
* | [android] - add LatLng for pixel conversion feature to MapSnapshotter | tobrun | 2018-07-05 | 4 | -2/+25 |
| | |||||
* | Rename `HeatmapColorPropertyValue` to `ColorRampPropertyValue` | Mikhail Pozdnyakov | 2018-07-05 | 1 | -5/+5 |
| | | | | | | | | Based on patch from @lbud (Lauren Budorick). Give `HeatmapColorPropertyValue` a more generic name, since the same value type will be used for both `heatmap-color` and `line-gradient` properties. | ||||
* | [android] - create device independent tests for camera position testing | tobrun | 2018-07-05 | 17 | -107/+209 |
| | |||||
* | [android] - add bearing and pitch to get camera for geometry | tobrun | 2018-07-05 | 6 | -111/+343 |
| | |||||
* | [android] - add bearing and tilt to LatLngBounds, incorporate current tilt ↵ | tobrun | 2018-07-05 | 5 | -20/+177 |
| | | | | and bearing transformation in old api | ||||
* | [android] - avoid race condition when calling getMapAsync from ↵ | tobrun | 2018-07-05 | 1 | -7/+12 |
| | | | | OnMapReadyIdlingResource | ||||
* | [core] Avoid blocking in Thread<Object> constructor (#12151) | Anand Thakker | 2018-07-03 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce AspiringActor, EstablishedActor This pair of objects represents the two-phase (parent-thread / child-thread) construction that's needed to support constructing Thread<Object> without blocking until the child thread is up and running. An `AspiringActor<O>` is responsible for: - ownership of the actor's `Mailbox` - allocating the memory for (but *not* constructing) the target object `O` Using these two pieces--the mailbox and a stable address for `O`--an `AspiringActor<O>` can accept messages for the target object, or provide `ActorRef<O>`s that do so, before the object has actually been constructed by the corresponding `EstablishedActor<O>`. (Such messages are queued in the mailbox until after the object is constructed.) This allows for an `AspiringActor<O>` to be created and safely used by a thread other than the one on which the target object will (eventually) live. An `EstablishedActor<O>` is responsible for managing the lifetime of the target object `O` and the open/closed state of the parent's `mailbox`. The `O` object's lifetime is contained by that of its owning `EstablishedActor<O>`: the `EstablishedActor` constructor executes the `O` constructor via "placement new", constructing it at the address provided by the parent `AspiringActor`, and the `~EstablishedActor` destructor similarly executes the `~O` destructor (after closing the mailbox). `EstablishedActor` should therefore live entirely on the thread intended to own `O`. * Remove Actor#{invoke,ask} | ||||
* | [build] Record binary size via GitHub check | John Firebaugh | 2018-07-03 | 1 | -5/+5 |
| | |||||
* | [android] Android "collator" implementation | Chris Loer | 2018-07-03 | 4 | -1/+264 |
| | | | | | | | | | - Uses java.text.Collator for comparison - Uses java.util.Locale for locale loading - Uses LanguageTag for BCP 47 parsing - Falls back to non-locale-aware nunicode/default comparison for case-sensitive/diacritic-insensitive. - Testing these changes depends on running Android render tests - "collator" is not yet exposed in the SDK bindings. | ||||
* | [core, vendor] Create vendored nunicode 1.8. | Chris Loer | 2018-07-03 | 1 | -2/+2 |
| | | | | | - Version bump to 1.8 necessary for "unaccent" functionality - Qt now depends on nunicode, ruling out use of precompiled binaries | ||||
* | [android] - update changelog for release android-v6.3.0-alpha.1 | Tobrun | 2018-06-29 | 1 | -1/+4 |
| | |||||
* | [android] - update changelog for release android-v6.3.0-alpha.1 | Tobrun | 2018-06-29 | 1 | -0/+7 |
| | |||||
* | [android] - changelog for v6.2.0 | Łukasz Paczos | 2018-06-29 | 1 | -0/+10 |
| | |||||
* | updated MAS version to 3.3.0 (#12236) | Osana Babayan | 2018-06-27 | 1 | -1/+1 |
| | |||||
* | [android] - range alpha between 0 and 1 with android color conversion | tobrun | 2018-06-27 | 5 | -18/+53 |
| | |||||
* | [build] Update libmapbox-gl.so location | John Firebaugh | 2018-06-26 | 1 | -4/+4 |
| | |||||
* | [build] Remove unused | John Firebaugh | 2018-06-26 | 1 | -2/+0 |
| | |||||
* | [android] - remove reflection lookup for MarkerViewAdapter intialisation | tobrun | 2018-06-26 | 3 | -7/+5 |
| | |||||
* | [android] - fix geojson example, internal logic change with expressions ↵ | tobrun | 2018-06-26 | 2 | -12/+53 |
| | | | | conversion | ||||
* | [android] - add support for sdf by exposing sdf confiigurationn when calling ↵ | tobrun | 2018-06-25 | 7 | -22/+64 |
| | | | | MapboxMap#addImage. | ||||
* | [core] add raster-resampling property (#12176)upstream/rclee | Molly Lloyd | 2018-06-21 | 8 | -0/+98 |
| | | | | | | | | | | * update style-code for raster-resampling * implement user-defined raster-resampling * invert filter condition * raster-resampling -> raster-resampling-mode for darwin language conventions | ||||
* | [android] - dispatch camera start callback only when actually moving | Łukasz Paczos | 2018-06-20 | 1 | -16/+12 |
| | |||||
* | [android] make sure the object is still valid before calling nativeOnResponse() | Konstantin Käfer | 2018-06-20 | 1 | -1/+5 |
| | |||||
* | [android] initialize RunLoop::Impl::nextRunnable iterator | Konstantin Käfer | 2018-06-19 | 1 | -1/+1 |
| | |||||
* | [android] - fix Android licenses formatting | Łukasz Paczos | 2018-06-18 | 2 | -43/+43 |
| | |||||
* | [android] - telemetry bump to v3.1.3 | Łukasz Paczos | 2018-06-15 | 1 | -1/+1 |
| | |||||
* | [android] - added Android licenses make target | Łukasz Paczos | 2018-06-14 | 4 | -0/+167 |
| | |||||
* | [android] - changelog for 6.2.0-beta.2 | Łukasz Paczos | 2018-06-14 | 1 | -0/+5 |
| | | | | (cherry picked from commit ffb30bb) | ||||
* | [android] Remove support for Fabric (#12126) | Antonio Zugaldia | 2018-06-12 | 3 | -12/+1 |
| | | | | | | * [android] remove fabric properties file * [android] fabric.properties no longer present * [android] fabric step in release.py no longer necessary | ||||
* | [android] - move match stops conversion to Stop.toExpressionArray | tobrun | 2018-06-12 | 2 | -12/+21 |
| |