summaryrefslogtreecommitdiff
path: root/ios
Commit message (Collapse)AuthorAgeFilesLines
...
* bump podspec for 0.5.4v0.5.4Justin R. Miller2015-07-301-1/+1
|
* Include app-info.plist in demo app projectJason Wray2015-07-281-1/+2
| | | | [skip ci]
* Exempt Metrics staging server from PFS requirementMinh Nguyễn2015-07-271-2/+13
| | | | | This server should not used in actual production code anyways. Fixes #1937.
* bump podspec to 0.5.3v0.5.3Justin R. Miller2015-07-221-1/+1
|
* Bumped podspec to 0.5.2 with symbolsv0.5.2Minh Nguyễn2015-07-141-1/+1
|
* Updated podspec for 0.5.1v0.5.1Minh Nguyễn2015-07-131-1/+1
|
* Force -ObjC in Mapbox GL podMinh Nguyễn2015-07-101-1/+4
| | | | Fixes #1849.
* bump podspec to 0.5.0 final (no symbols)v0.5.0Justin R. Miller2015-07-091-1/+1
|
* bump podspec to 0.5.0rc2v0.5.0-rc.2Justin R. Miller2015-07-091-1/+1
|
* bump podspec to 0.5.0-rc.1 w/ symbolsv0.5.0-rc.1Justin R. Miller2015-07-081-1/+1
|
* remove loggingJustin R. Miller2015-07-081-6/+0
|
* runtime imagery based on annotation titleJustin R. Miller2015-07-081-14/+26
|
* fixes for runtime Cocoa imageryJustin R. Miller2015-07-081-1/+1
|
* Cocoa custom marker imagery APIJustin R. Miller2015-07-081-0/+33
|
* bump podspec to 0.4.5v0.4.5Justin R. Miller2015-07-071-1/+1
|
* bump podspec to 0.4.4v0.4.4Justin R. Miller2015-07-021-1/+1
|
* bump podspec to 0.4.3v0.4.3Justin R. Miller2015-06-301-1/+1
|
* Rationalize *RenderingMap notificationsJohn Firebaugh2015-06-301-1/+1
|
* bump podspec to 0.4.2v0.4.2Justin R. Miller2015-06-301-1/+1
|
* bump podspec & move back to symbols versionv0.4.1Justin R. Miller2015-06-261-1/+1
|
* Substitute lightweight generics macros in docsetMinh Nguyễn2015-06-221-4/+10
| | | | Followup to 91641ffb01dcf8d303b13216797bb41d1f770124 for #1711: also preprocess the generics macros when generating a docset.
* Screenshot III: The ReduceningJustin R. Miller2015-06-191-0/+0
|
* Screenshot II: The Return of ScreenshotJustin R. Miller2015-06-193-2/+2
|
* avoid release candidates in determining versionJustin R. Miller2015-06-191-1/+1
|
* update podspec (0.4.0 final, no symbols)v0.4.0Justin R. Miller2015-06-191-1/+1
|
* remove problematic screenshot URL from HTML docsJustin R. Miller2015-06-181-1/+1
|
* fix appledoc version parsingJustin R. Miller2015-06-181-1/+1
|
* update podspec to use debug symbols build during testingJustin R. Miller2015-06-171-1/+1
|
* bump podspecJustin R. Miller2015-06-171-1/+1
|
* bump podspec versionv0.3.5Justin R. Miller2015-06-151-1/+1
|
* squash of #1655: shape annotations support for core & iOSJustin R. Miller2015-06-157-52/+15890
|
* bump podspec to 0.3.4Justin R. Miller2015-06-041-1/+1
|
* bump podspec to 0.3.3ios-v0.3.3Justin R. Miller2015-06-031-1/+1
|
* fix typoJustin R. Miller2015-06-031-1/+1
|
* point to better appledoc install methodJustin R. Miller2015-06-031-1/+1
|
* Fixed ios-bench buildMinh Nguyễn2015-05-291-1/+1
| | | | `accessToken` parameter was removed in #1553.
* bump podspec to 0.3.2ios-v0.3.2Justin R. Miller2015-05-261-1/+1
|
* Merge branch '1ec5-plist-1535'Minh Nguyễn2015-05-201-17/+15
|\
| * Obsoleted +setMapboxMetricsEnabledSettingShownInApp:Minh Nguyễn2015-05-131-17/+15
| | | | | | | | Made `+[MGLAccountManager setMapboxMetricsEnabledSettingShownInApp:]` unavailable, with a message explaining what to do instead. Removed a commented-out call to that method. Only the environment for an access token if one hasn’t already been set in Info.plist.
| * #1516 - Adding public setter method to MGLAccountManager.h. Fixing example ↵Brad Leege2015-05-121-1/+1
| | | | | | | | signal opt out in MBXAppDelegate.
| * #1516 - Adding explicit checks for developer implementation of user Opt Out ↵Brad Leege2015-05-111-0/+3
| | | | | | | | functionality
* | Merge pull request #1589 from mapbox/1396-info-plist-onlyBrad Leege2015-05-181-0/+2
|\ \ | | | | | | Manage Metrics TEST URL Via Info.plist
| * | #1396 - Refactoring Metrics Test Server URL configuration to be drive via ↵Brad Leege2015-05-181-0/+2
| | | | | | | | | | | | Info.plist
* | | Marked unused parameters with __unusedMinh Nguyễn2015-05-182-18/+5
|/ / | | | | | | Replaced haphazard usage of pragmas and `(void)` expressions with the `__unused` keyword.
* | Removed “private” headerMinh Nguyễn2015-05-182-2/+12
| | | | | | | | | | | | Instead of exposing these methods in a private header that winds up triggering warnings publicly, just redeclare the methods in a category. Since this is a test app, we’ll catch any issues that arise from refactoring simply by testing. Fixes #1579.
* | Privatized MGLMapboxEventsMinh Nguyễn2015-05-181-24/+0
| | | | | | | | `-pauseMetricsCollection` and `-resumeMetricsCollection` were originally introduced to mitigate concerns around battery usage, but `MGLMapboxEvents` has since evolved to tread much lighter on the battery. There’s no longer any need for the client to call these methods directly. The iOS test project now includes MGLMapboxEvents.h explicitly to avoid having to package a header that will go unused.
* | use full raw screenshot for portability into API docsJustin R. Miller2015-05-151-1/+1
| |
* | bump podspec to 0.3.1ios-v0.3.1Justin R. Miller2015-05-151-1/+1
| |
* | add podspec site docs URLJustin R. Miller2015-05-151-0/+1
| |
* | add iOS screenshot to README, which goes into API docsJustin R. Miller2015-05-151-0/+2
| |