summaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* [node] Support setLayoutProperty(..., "visibility", ...)John Firebaugh2016-06-213-0/+22
|
* [core] Use mbgl::style::conversion in node bindingsJohn Firebaugh2016-06-216-124/+114
|
* [tests] Run memory tests on travisThiago Marcos P. Santos2016-06-212-2/+2
| | | | | | Qt4 will run tests with libjemalloc.so. The Memory.Footprint and the Memory.Fragmentation will only run with libjemalloc.so because we have then a better control over the results.
* [core] Replace boost iostream with standard {i,s}streamBruno de Oliveira Abinader2016-06-212-35/+16
| | | | Fixes #4915.
* [node] Read 'options.showOverdrawInspector'Bruno de Oliveira Abinader2016-06-202-1/+7
|
* [core] s/Wireframe/Overdraw/gBruno de Oliveira Abinader2016-06-209-26/+25
|
* [Qt] Added QMapbox::TransitionOptions to style class functionsBruno de Oliveira Abinader2016-06-204-28/+75
|
* [core] UnitBezier ctor is now constexprBruno de Oliveira Abinader2016-06-203-10/+10
|
* [osx] Added AppleScript exampleMinh Nguyễn2016-06-191-0/+8
|
* [core] Avoid redundant 'inline' usageBruno de Oliveira Abinader2016-06-184-7/+7
|
* [macos] Add "Add Animated Annotation" to the Debug menuJohn Firebaugh2016-06-172-4/+32
|
* [macos] Fix an intended floating point divisionJohn Firebaugh2016-06-171-1/+1
|
* [build] Don't override CXX11ABI if already setBruno de Oliveira Abinader2016-06-172-2/+2
|
* [Qt] Define QT_IMAGE_DECODERS if neededBruno de Oliveira Abinader2016-06-171-0/+6
|
* [core] Runtime source API: private implsJohn Firebaugh2016-06-161-14/+14
|
* [core, node] Implement setPaintProperty for color properties (#5380)John Firebaugh2016-06-161-2/+12
|
* [Qt] Install valgrind on-demandBruno de Oliveira Abinader2016-06-161-2/+0
|
* [Qt] Cleanup annotation usageBruno de Oliveira Abinader2016-06-161-2/+2
|
* Support for icon-text-fit, icon-text-fit-padding (#5334)Young Hahn2016-06-152-0/+11
| | | | | | | | | | * Add support for icon-text-fit * Port unit tests for getIconQuads() from js => cpp * Add support for padding in all 4 directions. * Update all hashes post-merge
* [core] Use variant<std::string, GeoJSON> in GeoJSON sourceJohn Firebaugh2016-06-151-3/+7
|
* [core] Use variant<std::string, Tileset> in TileSourceJohn Firebaugh2016-06-151-8/+13
| | | | A tile source can either specify a URL to TileJSON, or inline TileJSON.
* [node] Narrow conversion (double → float) caught by GCCBruno de Oliveira Abinader2016-06-151-1/+1
|
* Color class (#5361)Young Hahn2016-06-154-7/+7
| | | | | | * Color class * Switch to list initialization
* [tidy] Switched to Travis CIBruno de Oliveira Abinader2016-06-141-53/+0
| | | | Fixes https://github.com/mapbox/mapbox-gl-native/issues/5341.
* [tidy/linux] clang-analyzer-deadcode.DeadStoresBruno de Oliveira Abinader2016-06-141-2/+2
|
* [tidy/linux] modernize-pass-by-valueBruno de Oliveira Abinader2016-06-141-4/+4
|
* [tidy/linux] modernize-use-overrideBruno de Oliveira Abinader2016-06-141-1/+1
|
* [tidy/linux] modernize-use-nullptrBruno de Oliveira Abinader2016-06-145-20/+20
|
* [tidy/linux] llvm-namespace-commentBruno de Oliveira Abinader2016-06-144-4/+5
|
* [core] Add virtual Source::getTileSize()John Firebaugh2016-06-141-5/+5
|
* [core] Push Source::url down to subclassesJohn Firebaugh2016-06-141-8/+13
|
* [core] Push Source::tileset down to TileSourceJohn Firebaugh2016-06-141-6/+12
|
* [core] Use Range<uint8_t> instead of full Tileset where possibleJohn Firebaugh2016-06-142-4/+4
|
* [macos] Added changelog section for post-0.2.0Minh Nguyễn2016-06-141-0/+2
| | | | [skip ci]
* [macos] Zip up SDK before uploading itmacos-v0.2.0Minh Nguyễn2016-06-141-1/+6
|
* [macos] Deployment scriptMinh Nguyễn2016-06-141-0/+78
| | | | Adapted the iOS SDK deployment script for the macOS SDK.
* [macos] Updated changelogMinh Nguyễn2016-06-141-1/+8
| | | | Updated changelog for #5183, #5124, #2444, #5053, #4579, realm/jazzy#530.
* [tidy] Install mason clang-tidy if CLANG_TIDY is not setBruno de Oliveira Abinader2016-06-141-1/+0
| | | | Also added HeaderFilterRegex to .clang-tidy.
* [macos] Renamed OS X SDK to macOS SDKMinh Nguyễn2016-06-1487-143/+144
| | | | Also renamed as many references to OS X as possible to macOS in documentation.
* Suppress warning when dequeueing subclasses (#5244)Alan Kinnaman2016-06-141-2/+2
| | | | | | | When using a subclass of `MGLAnnotationView` or `MGLAnnotationImage`, the following warning occurs: `Incompatible pointer types initializing 'MyClassName *' with an expression of type 'MGLAnnotationView * _Nullable'` This change eliminates the warning and matches Apple's implementation of `UITableViewCell`.
* [node] Partial implementation of runtime styling API for node bindingsJohn Firebaugh2016-06-136-8/+391
|
* [core] Eliminate some redundant NodeMap membersJohn Firebaugh2016-06-132-21/+9
|
* [core] Make enum ↔ string conversion more generic-friendlyJohn Firebaugh2016-06-133-4/+8
| | | | | | Rewrite enum.hpp in such a way that parseConstant can be defined generically for all enumerated types. While there, properly validated enumerated property values.
* [build] Re-enable tidy checksBruno de Oliveira Abinader2016-06-131-0/+54
|
* [tidy] Check modernize-use-overrideBruno de Oliveira Abinader2016-06-131-1/+1
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-override.html
* [tidy] Check modernize-pass-by-valueBruno de Oliveira Abinader2016-06-135-16/+15
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html
* [tidy] Check modernize-use-nullptrBruno de Oliveira Abinader2016-06-132-3/+3
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
* [tidy] Check llvm-namespace-commentBruno de Oliveira Abinader2016-06-132-3/+3
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
* [core] fix pedantic warning messagesKonstantin Käfer2016-06-132-62/+2
|
* [ios] Updated changelog for #5302Minh Nguyễn2016-06-091-0/+1
|