summaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* Update CI badges [ci skip]John Firebaugh2016-03-221-1/+0
|
* [node] Build OS X on BitriseJohn Firebaugh2016-03-224-12/+66
|
* [ios] make unit tests work on iOS and iOS SimulatorKonstantin Käfer2016-03-221-0/+2
|
* [core] split headless_view.cpp into implementation-specific filesKonstantin Käfer2016-03-225-197/+367
| | | | also adds a EAGL implementation for iOS
* [ios] explicitly load the style when the app loadsKonstantin Käfer2016-03-221-0/+1
|
* [android] #4365 - add Bitrise step to upload downloadable APK file to AWS S3Tobrun2016-03-221-0/+8
|
* [glfw] Main loop integrationThiago Marcos P. Santos2016-03-211-3/+14
| | | | | | This new code can be used for rendering on the Main thread while it will also work for rendering on the Map thread before we make the switch. Needed by #2909.
* Merge pull request #4412 from mapbox/darwin-readmeTom MacWright2016-03-211-0/+10
|\ | | | | Add Darwin readme
| * [ios, osx] Elaborate dependenciesMinh Nguyễn2016-03-211-3/+6
| | | | | | Also avoid referring to Mapbox SDKs with Apple’s SDK names.
| * Add Darwin readmeTom MacWright2016-03-211-0/+7
| |
* | [android] #4328 - Adding check of userAgent to see if it's still in initial ↵Brad Leege2016-03-211-1/+1
|/ | | | state before prepending app meta data to it
* Reset the translation to zero without adjusting for view to fix non-zero ↵Dan Wexler2016-03-201-1/+1
| | | | frame origin bug.
* [android] Add script for NDK debuggingJohn Firebaugh2016-03-181-0/+46
|
* [android] Throw C++ exceptions by value, not by pointerJohn Firebaugh2016-03-182-41/+41
| | | | Refs #4385
* [android] #4328 - Make Telemetry start only when savedInstanceState is nullBrad Leege2016-03-182-3/+3
|
* [android] #4294 - JavaDocs for Telemetry classesBrad Leege2016-03-184-1/+15
|
* [core] Fix regression of prior expiration time not being respectedThiago Marcos P. Santos2016-03-171-1/+5
|
* [android] Remove default transition durationBruno de Oliveira Abinader2016-03-184-45/+0
|
* [ios] Update class transition usageBruno de Oliveira Abinader2016-03-181-2/+3
|
* [core] Added user-defined transition properties when modifying classesBruno de Oliveira Abinader2016-03-181-3/+4
|
* [ios] Remove redundant lines from ios/scripts/defaults.mdJohn Firebaugh2016-03-161-3/+0
| | | | MASON_PLATFORM=$(HOST) and MASON_PLATFORM_VERSION=$(HOST_VERSION) are set by main.mk; there's no need to set them here.
* [android] #4308 - add some simple gesture testsTobrun2016-03-153-1/+64
|
* [ios] Immediately remove offline pack from tableMinh Nguyễn2016-03-141-6/+3
| | | | Remove all references to an offline pack before the call to -removePackWithCompletionHander:.
* [ios, osx] Allow null completion handlers in MGLOfflineStorageMinh Nguyễn2016-03-141-2/+2
|
* [ios, osx] Removed pack nil check from MGLOfflineRegionObserverMinh Nguyễn2016-03-141-6/+0
| | | | Due to ARC, MGLOfflinePack can be deallocated at any time following its initialization. -dealloc ensures that the offline region observer is unset, but that step is asynchronous; there is no guarantee that it completes before the first status change update. In fact, the pack is deallocated before the first status change update unless it is captured outside of the MGLOfflinePackAdditionCompletionHandler. The pack nil check is unnecessary because the subsequent code would be a no-op.
* [android] #4301 - added robotium testing framework to perform integration ↵Tobrun2016-03-1435-44/+232
| | | | testing
* [linux] Added world tour to GLFW test appBruno de Oliveira Abinader2016-03-141-0/+22
|
* [core] Harden Transform anchor & padding usageBruno de Oliveira Abinader2016-03-132-10/+10
| | | | | Use optional values for anchor & padding in Map and Transform functions instead of NaNs. Added unit tests to stress some edge cases.
* [android] #3749 - added javadocTobrun2016-03-1239-102/+568
|
* [android] #4252 - close concurrent window fixTobrun2016-03-111-16/+11
|
* [android] #4283 - enable strict mode in test app + fix strict mode warning ↵Tobrun2016-03-112-1/+17
| | | | related to releasing the surface
* [android] #4270 - library resource prefix espresso updateTobrun2016-03-111-6/+2
|
* ios-v3.2.0-pre.2ios-v3.2.0-pre.2Minh Nguyễn2016-03-111-1/+1
|
* [core] Deactivate offline region upon completionMinh Nguyễn2016-03-111-0/+8
|
* [ios] Fixed iosapp buildMinh Nguyễn2016-03-101-2/+2
| | | | MBXDownloadsTableViewController.{h,m} had been renamed MBXOfflinePacksTableViewController.{h,m}, but the project had not been.
* [ios] Renamed downloads to offline packs in iosappMinh Nguyễn2016-03-104-30/+30
|
* [ios, osx] Renamed MGLOfflineTask to MGLOfflinePackMinh Nguyễn2016-03-1013-367/+368
| | | | “Offline pack” more effectively communicates the persistent nature of the downloaded content.
* [ios, osx] Avoid unregistering observer for invalid taskMinh Nguyễn2016-03-101-2/+4
|
* [ios, osx] Tightened offline task stateMinh Nguyễn2016-03-104-12/+43
| | | | Fixed a race condition that could occur if a progress update comes after a call to remove the task but before the removal is complete. Avoid synchronously setting the task’s state inside -resume and -suspend; instead, rely on the observer to set the state asynchronously.
* [ios, osx] Distinguish between unknown and inactive stateMinh Nguyễn2016-03-103-14/+38
|
* [ios, osx] Privatized offline region observerMinh Nguyễn2016-03-102-21/+15
|
* [ios, osx] Invalidate task immediately upon removalMinh Nguyễn2016-03-102-3/+8
|
* [ios, osx] Fixed crash interacting with MGLOfflineTaskMinh Nguyễn2016-03-101-5/+9
| | | | Added a missing conditional to the invalidation checking macro that I factored out at the last minute.
* [ios, osx] Documented offline APIsMinh Nguyễn2016-03-108-12/+328
| | | | Also categorized offline symbols for jazzy and moved styleURL from MGLOfflineRegion to MGLTilePyramidOfflineRegion, since you never know if there will be a region type not constrained by a style in the future.
* [ios] Tap to pause/resumeMinh Nguyễn2016-03-103-1/+47
| | | | Tapping on a download now pauses or resumes it. Tapping on a completed download navigates to the downloaded region and switches to the downloaded style.
* [ios, osx] Renamed offline classesMinh Nguyễn2016-03-1017-212/+212
| | | | Renamed SDK classes related to offline viewing to more closely match the terminology used by mbgl and the Android SDK while remaining consistent with Cocoa naming principles.
* [osx] Added OS X support for offline downloadsMinh Nguyễn2016-03-1024-238/+142
|
* [ios] Added download manager to iosappMinh Nguyễn2016-03-105-32/+310
|
* [ios] Implemented offline API in iOS SDKMinh Nguyễn2016-03-1013-0/+539
| | | | Fixes #3892.
* [ios] Converted iosapp to use storyboardMinh Nguyễn2016-03-105-80/+136
|