summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [publish binary]node-v3.1.2-asanupstream/node-asanMike Morris2016-05-131-1/+2
|
* 3.1.2-asan [publish binary]Mike Morris2016-05-131-1/+1
|
* move -fsanitize=address from binding.gyp to travis envMike Morris2016-05-122-7/+1
|
* add simple leak testMike Morris2016-05-123-4/+34
|
* [node] call npm test directlyMike Morris2016-05-121-1/+2
|
* remove some loggingMike Morris2016-05-121-5/+1
|
* bump node_asan, drop hack from .travis.ymlMike Morris2016-05-122-9/+1
|
* drop catMike Morris2016-05-111-1/+1
|
* fix PATH exportMike Morris2016-05-111-2/+4
|
* [node] install catMike Morris2016-05-111-1/+1
|
* [node] hack to make npm portableMike Morris2016-05-111-0/+9
|
* [node] disable leak detection until make test-nodeMike Morris2016-05-111-1/+2
|
* [node] nvm use system AFTER installing node_asanMike Morris2016-05-111-2/+2
|
* [node] compile with -fsanitize=addressMike Morris2016-05-115-3/+11
|
* [node] bump mason for node_asan@4.4.4Mike Morris2016-05-111-0/+0
|
* node-v3.1.2node-v3.1.2Mike Morris2016-04-263-4/+9
|
* [Qt] Split Qt flagsThiago Marcos P. Santos2016-04-263-6/+21
| | | | | The shared library won't link with things that we don't use, like QtOpenGL anymore.
* use Clock::time_point::max() instead of frame timeMike Morris2016-04-261-2/+2
| | | | | | For Style::cascade and Style::recalculate, when rendering with MapMode::Still. Fixes a subtle race condition with animated transitions exacerbated by cd1a06c2dc209da81b3d745c088e568b3b14809f.
* [android] #3231 - add support for tinting attribution icon through xml - ↵Tobrun2016-04-269-44/+106
| | | | MapboxMapOptions, AttributionDialog will use the same color values
* [android] #3231 - added support for automatic tinting ui components used the ↵Tobrun2016-04-264-3/+113
| | | | client developer material colors
* [osx] make scrollwheel zooming smootherKonstantin Käfer2016-04-261-6/+14
| | | | | - uses the same algorithm as the GLFW app to determine scrollwheel zoom speed - disables transitions which makes the trackpad feel faster due to immediate response
* [osx] disable touch eventsKonstantin Käfer2016-04-261-1/+0
| | | | they are canceling out trackpad scrolling events
* [ios] Hide compass from VoiceOver when pointing northMinh Nguyễn2016-04-261-6/+7
| | | | Fixes #4820.
* [ios] Use default images for world tour destinationsMinh Nguyễn2016-04-251-1/+1
| | | | Use the default red pin images for world tour destinations in iosapp instead of the two characters usually used for the “Add n Points” actions.
* [tests] Rationalize test fixtures (#4834)John Firebaugh2016-04-2523-243/+163
| | | Place them in a directory corresponding to the test .cpp file name.
* [ios] Update frame size when changing dot/puck modeJason Wray2016-04-251-0/+20
| | | | | | - Keeps the same center point - `updateFrameWithSize:` does not take CGSize because there is not yet support for non-square user location annotations
* [osx] Fixed crash on launch on OS X 10.10Minh Nguyễn2016-04-251-1/+1
| | | | Fixed a crash introduced in #4783 that occurs when launching osxapp. -[NSString localizedCapitalizedString] is only available on OS X 10.11 and above.
* [core] Define mbgl::variant (#4833)John Firebaugh2016-04-258-15/+24
| | | For parallelism with mbgl::optional, and to avoid exposing namespaces other than `mbgl` in the public API.
* [core] Move enum type classes to implementation (#4831)John Firebaugh2016-04-253-81/+63
|
* [android] #4829 - Use CopyOnWriteArrayList for non blocking iterationsBrad Leege2016-04-251-6/+3
|
* [core] Extract Function::evaluation to a separate class (#4811)John Firebaugh2016-04-2512-148/+122
| | | This allows the Function<Faded<T>> partial specialization to be eliminated, giving all property functions a consistent storage type.
* [build][Qt] Use Ubuntu Trusty for Qt5Thiago Marcos P. Santos2016-04-251-16/+26
| | | | | | | | | Ships with a newer version of Qt5 (Qt 5.2.1) and it is closer to what we are actually shipping to. Unfortunately, ATM Trusty will require 'root' [1] and won't that makes it significantly slower because it will not use a container version of the build env.
* [Qt] Add toolchain supportThiago Marcos P. Santos2016-04-253-24/+58
| | | | Enables cross-compilation.
* [build] Added 'qt-app' targets to Travis Qt buildBruno de Oliveira Abinader2016-04-251-2/+2
|
* [Qt] Force lib install name to be executable path on OS XBruno de Oliveira Abinader2016-04-251-1/+4
|
* [Qt] Do not ignore compilation errorsThiago Marcos P. Santos2016-04-252-2/+0
| | | | But will no longer build with GCC 5.
* [Qt] Only include and link with QMapboxGL libThiago Marcos P. Santos2016-04-252-4/+2
| | | | Fixes #4808
* [Qt] Do not use non-Qt headersThiago Marcos P. Santos2016-04-253-10/+21
|
* [Qt] Set default visibility to hidden for QtThiago Marcos P. Santos2016-04-251-0/+4
| | | | | | Expose less symbols on the shared library. Fixes #4809
* [ios] Added accessibility labels, hints, gesturesMinh Nguyễn2016-04-255-30/+100
| | | | | | | | | | Fixed an issue where the “return to map” accessibility element lacked a label. Always update the title and subtitle of an annotation accessibility element, in case the title or subtitle changes from one showing to the next. Added a hint for annotations. Use declarative rather than imperative for hints. Marked the map view and its annotations as adjustable so that swiping up and down with VoiceOver zooms out and in, respectively. Added accessibility values to toolbar buttons in iosapp.
* [ios] Made annotation callouts accessibleMinh Nguyễn2016-04-255-27/+142
| | | | Via nfarina/calloutview#84, SMCalloutView is now accessible. Activating a focused annotation now shows its callout view and focuses its left accessory view, if present, or the title view. There is a “return to map” accessibility element for dismissing the callout view and restoring focus to the annotation on the map.
* [ios] Restored user dot accessibilityMinh Nguyễn2016-04-251-5/+15
| | | | Put the user dot back into rotation as an accessible element.
* [ios] Made annotations accessibleMinh Nguyễn2016-04-252-0/+113
| | | | | | | | | | Lazily create and cache accessibility elements for visible annotations as UIAccessibility asks about them. Sort the annotations’ accessibility elements by the annotations’ distance from the logical center (the center after accounting for padding, or the user dot when user tracking mode is on). Updated the changelog. Fixes #1493.
* [ios] Made compass and user dot accessibleMinh Nguyễn2016-04-253-26/+66
| | | | | | Made the compass behave like a button when visible. Added accessibility values and hints. The compass’s accessibility value uses the compass direction formatter. Turned off direct interaction with the map because it obscures the ornaments. The user dot now reports the current coordinates. Its accessibility label now reflects its annotation’s title instead of the hardcoded label “User location”. (It’d be weird to address the VoiceOver user as “user”.)
* [ios] VoiceOver support for MGLMapViewMinh Nguyễn2016-04-251-0/+39
| | | | Enabled direct interaction with `MGLMapView`, allowing for panning and so forth. Defined an accessibility value that announces the current center coordinate. Inset the map view accessibility frame to exclude ornaments from the interactive element.
* [ios, osx] Fixed direction formatter edge casesMinh Nguyễn2016-04-244-2/+35
| | | | Fixed an issue causing angles that are multiples of 360°, such as 720°, to be described as 0 o’clock. Fixed a crash when a compass direction is close enough to 360° to round up to 360°.
* [ios] Only convert encoding of files generated by genstringsMinh Nguyễn2016-04-241-2/+2
| | | | Followup to #4783: fixed an issue causing make genstrings to reconvert a UTF-8-encoded file from UTF-16 to UTF-8, garbling it.
* [ios] Added separate target for Settings.bundleMinh Nguyễn2016-04-244-33/+125
| | | | | | Added a separate target to produce the example Settings.bundle. Use the build product in iosapp instead of a folder reference. Added the bundle and settings targets as dependencies on the dynamic and static targets instead of listing them explicitly in various schemes.
* [ios] Use base localization for Settings.bundleMinh Nguyễn2016-04-243-3/+6
| | | | Also converted the bundle’s strings file from UTF-16 encoding to UTF-8 encoding for better diffability.
* [ios] Fixed ios-test build warningsMinh Nguyễn2016-04-242-104/+4
|