summaryrefslogtreecommitdiff
path: root/.jazzy.yaml
Commit message (Collapse)AuthorAgeFilesLines
* [ios, osx] Updated build system for jazzyMinh Nguyễn2016-04-221-76/+0
| | | | Consolidated NSValue categories to work around realm/jazzy#539. Documented MGLErrorCode. Moved jazzy configuration file into platform/ios/. Removed redundant include/Mapbox.h that was only being used by jazzy, now that the static frameworks’s umbrella header is based on that of the dynamic framework. Moved framework/Mapbox.h to include/Mapbox.h for consistency.
* [ios, osx] Split MGLDirectionFormatter in twoMinh Nguyễn2016-04-221-2/+2
| | | | Split MGLDirectionFormatter into MGLClockDirectionFormatter, which specializes in clock positions, and MGLCompassDirectionFormatter, which boxes the compass. This neatly avoids any confusion that might arise if the developer fails to read the documentation and thinks the original unified formatter can convert between the two types of directions.
* [ios, osx] Direction formatterMinh Nguyễn2016-04-221-0/+2
| | | | Implemented an NSFormatter for formatting CLLocationDirection values as localizable display strings. The formatter supports both absolute compass directions, such as “south”, and relative “clock” directions, such as “6 o’clock”.
* [ios, osx] Coordinate formatterMinh Nguyễn2016-04-221-0/+2
| | | | | | Added a degree-minute-second coordinate formatter for general use. Use this formatter in iosapp and osxapp. Added unit tests for the coordinate formatter and for round-tripping geometry types through NSValue.
* Updated jazzy config flags for jazzy 0.6.0Minh Nguyễn2016-04-061-4/+4
| | | | Fixes #4620.
* [ios, osx] Include progress in progress change notificationMinh Nguyễn2016-03-291-0/+3
| | | | An MGLOfflinePackProgressChangedNotification notification now includes the pack’s state and progress values, which match the values in the corresponding MGLOfflinePack properties. Implemented NSValue category methods to store MGLOfflinePackProgress inside a dictionary.
* [ios, osx] Updated jazzy categoriesMinh Nguyễn2016-03-291-2/+5
|
* [ios] Include offline headers in static umbrella headerMinh Nguyễn2016-03-181-1/+1
| | | | Include offline headers in the umbrella header used by the static framework. These includes are already present in the umbrella header used by the dynamic framework. jazzy relies on the static umbrella header to include all the headers, so the offline headers were also missing from documentation.
* [ios] MGLOfflinePack in jazzy configMinh Nguyễn2016-03-101-7/+7
|
* [ios, osx] Documented offline APIsMinh Nguyễn2016-03-101-0/+12
| | | | 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, osx] Consolidate remaining files in platform/{ios,osx}John Firebaugh2016-02-121-2/+2
|
* [ios] Get favicon from HTTPS in jazzy docsMinh Nguyễn2016-02-081-1/+1
|
* [ios] Made user dot position configurableMinh Nguyễn2016-01-201-0/+1
| | | | The user dot or user puck’s position is now configurable via a new alignment property in any user tracking mode. Also, -setUserTrackingMode:animated: is now exposed publicly, and setting its animated parameter to NO skips the initial animation.
* [ios] Categorized classes added in #3456Minh Nguyễn2016-01-091-0/+2
|
* Happy new year!Minh Nguyễn2016-01-051-1/+1
|
* [ios] Generate API documentation using jazzyMinh Nguyễn2016-01-051-0/+51
Replaced appledoc usage with jazzy, which understands modern Objective-C syntax by virtue of using Clang ASTs. Nevertheless, we have to make lots of changes to our documentation syntax, which was tailored to appledocs quirks. The new syntax jives much better with what Xcode expects in terms of auto-indentation and Quick Help. Fixes #1420.