Permalink
Browse files

merge release-1.1.8-iOS into develop

  • Loading branch information...
2 parents 931e07e + 8095bfb commit 558b0803f83a9574e78177a6f834121773cd2486 @BobEvans BobEvans committed Apr 26, 2017
Showing with 24,411 additions and 19,475 deletions.
  1. +3 −1 .gitignore
  2. +116 −962 Paco-iOS/Paco.xcodeproj/project.pbxproj
  3. +10 −0 Paco-iOS/Paco.xcworkspace/contents.xcworkspacedata
  4. BIN Paco-iOS/Paco.xcworkspace/xcuserdata/bobevans.xcuserdatad/UserInterfaceState.xcuserstate
  5. +56 −16 Paco-iOS/Paco/config/Images.xcassets/AppIcon.appiconset/Contents.json
  6. +6 −0 Paco-iOS/Paco/config/Images.xcassets/Contents.json
  7. +133 −25 Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Contents.json
  8. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png
  9. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png
  10. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png
  11. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png
  12. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default.png
  13. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default@2x.png
  14. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad.png
  15. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad@2x.png
  16. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape.png
  17. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape@2x.png
  18. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape~nostatusbar.png
  19. BIN ...iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape~nostatusbar@2x.png
  20. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~nostatusbar.png
  21. BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~nostatusbar@2x.png
  22. +23 −2 Paco-iOS/Paco/config/Paco-Info.plist
  23. +9 −0 Paco-iOS/Paco/source/PacoAppDelegate.h
  24. +25 −4 Paco-iOS/Paco/source/PacoAppDelegate.m
  25. +9 −3 Paco-iOS/Paco/source/core/authentication/PacoAuthenticator.h
  26. +127 −89 Paco-iOS/Paco/source/core/authentication/PacoAuthenticator.m
  27. +1 −1 Paco-iOS/Paco/source/core/client/PacoClient.m
  28. +1 −1 Paco-iOS/Paco/source/core/model/PacoExperimentInput.m
  29. +13 −1 Paco-iOS/Paco/source/core/scheduling/PacoNotificationManager.m
  30. +38 −41 Paco-iOS/Paco/source/core/service/PacoService.m
  31. +1 −0 Paco-iOS/Paco/source/ui/MainScreen/PacoMainViewController.h
  32. +18 −15 Paco-iOS/Paco/source/ui/MainScreen/PacoMainViewController.m
  33. +2 −4 Paco-iOS/Paco/source/ui/OpenSourceLibScreen/PacoOpenSourceLibViewController.m
  34. +8 −0 Paco-iOS/Paco/source/ui/QuestionScreen/PacoQuestionView.m
  35. BIN Paco-iOS/Paco/sourceImages/assets/splash_ios_tablet_1024x768@2x.png
  36. BIN Paco-iOS/Paco/sourceImages/icons/icon_ios7_ipad_152.png
  37. +2 −0 Paco-iOS/ParseKit/ParseKit.xcodeproj/project.pbxproj
  38. +9 −0 Paco-iOS/Podfile
  39. +24 −0 Paco-iOS/Podfile.lock
  40. +202 −0 Paco-iOS/Pods/AppAuth/LICENSE
  41. +327 −0 Paco-iOS/Pods/AppAuth/README.md
  42. +81 −0 Paco-iOS/Pods/AppAuth/Source/AppAuth.h
  43. +238 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthState.h
  44. +499 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthState.m
  45. +39 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthStateChangeDelegate.h
  46. +62 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthStateErrorDelegate.h
  47. +233 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationRequest.h
  48. +300 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationRequest.m
  49. +128 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationResponse.h
  50. +209 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationResponse.m
  51. +156 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationService.h
  52. +354 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationService.m
  53. +51 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationUICoordinator.h
  54. +44 −0 Paco-iOS/Pods/AppAuth/Source/OIDDefines.h
  55. +318 −0 Paco-iOS/Pods/AppAuth/Source/OIDError.h
  56. +40 −0 Paco-iOS/Pods/AppAuth/Source/OIDError.m
  57. +107 −0 Paco-iOS/Pods/AppAuth/Source/OIDErrorUtilities.h
  58. +160 −0 Paco-iOS/Pods/AppAuth/Source/OIDErrorUtilities.m
  59. +116 −0 Paco-iOS/Pods/AppAuth/Source/OIDFieldMapping.h
  60. +112 −0 Paco-iOS/Pods/AppAuth/Source/OIDFieldMapping.m
  61. +40 −0 Paco-iOS/Pods/AppAuth/Source/OIDGrantTypes.h
  62. +27 −0 Paco-iOS/Pods/AppAuth/Source/OIDGrantTypes.m
  63. +31 −0 Paco-iOS/Pods/AppAuth/Source/OIDResponseTypes.h
  64. +25 −0 Paco-iOS/Pods/AppAuth/Source/OIDResponseTypes.m
  65. +48 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopeUtilities.h
  66. +58 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopeUtilities.m
  67. +46 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopes.h
  68. +29 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopes.m
  69. +68 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceConfiguration.h
  70. +132 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceConfiguration.m
  71. +352 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceDiscovery.h
  72. +350 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceDiscovery.m
  73. +158 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenRequest.h
  74. +274 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenRequest.m
  75. +102 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenResponse.h
  76. +168 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenResponse.m
  77. +55 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenUtilities.h
  78. +51 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenUtilities.m
  79. +79 −0 Paco-iOS/Pods/AppAuth/Source/OIDURLQueryComponent.h
  80. +197 −0 Paco-iOS/Pods/AppAuth/Source/OIDURLQueryComponent.m
  81. +46 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthState+IOS.h
  82. +36 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthState+IOS.m
  83. +44 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationService+IOS.h
  84. +38 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationService+IOS.m
  85. +66 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationUICoordinatorIOS.h
  86. +154 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationUICoordinatorIOS.m
  87. +202 −0 Paco-iOS/Pods/GTMAppAuth/LICENSE
  88. +372 −0 Paco-iOS/Pods/GTMAppAuth/README.md
  89. +30 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuth.h
  90. +52 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization+Keychain.h
  91. +46 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization+Keychain.m
  92. +133 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization.h
  93. +518 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization.m
  94. +62 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMKeychain.h
  95. +135 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMOAuth2KeychainCompatibility/GTMOAuth2KeychainCompatibility.h
  96. +321 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMOAuth2KeychainCompatibility/GTMOAuth2KeychainCompatibility.m
  97. +287 −0 Paco-iOS/Pods/GTMAppAuth/Source/iOS/GTMKeychain_iOS.m
  98. +202 −0 Paco-iOS/Pods/GTMSessionFetcher/LICENSE
  99. +23 −0 Paco-iOS/Pods/GTMSessionFetcher/README.md
  100. +52 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.h
  101. +185 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.m
  102. +148 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.h
  103. +629 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.m
  104. +49 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMReadMonitorInputStream.h
  105. +187 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMReadMonitorInputStream.m
  106. +1,308 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h
  107. +4,549 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m
  108. +27 −23 ...2/HTTPFetcher/GTMHTTPFetcherLogging.h → Pods/GTMSessionFetcher/Source/GTMSessionFetcherLogging.h}
  109. +976 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherLogging.m
  110. +190 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.h
  111. +1,352 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m
  112. +128 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.h
  113. +1,804 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m
  114. +24 −0 Paco-iOS/Pods/Manifest.lock
  115. +1,206 −0 Paco-iOS/Pods/Pods.xcodeproj/project.pbxproj
  116. +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/AppAuth.xcscheme
  117. +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/GTMAppAuth.xcscheme
  118. +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/GTMSessionFetcher.xcscheme
  119. +71 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/Pods-Paco.xcscheme
  120. +52 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/xcschememanagement.plist
  121. +5 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-dummy.m
  122. +12 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-prefix.pch
  123. +41 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-umbrella.h
  124. +6 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth.modulemap
  125. +11 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth.xcconfig
  126. +26 −0 Paco-iOS/Pods/Target Support Files/AppAuth/Info.plist
  127. +5 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m
  128. +12 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch
  129. +21 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h
  130. +6 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap
  131. +11 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.xcconfig
  132. +26 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/Info.plist
  133. +5 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-dummy.m
  134. +12 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-prefix.pch
  135. +23 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h
  136. +6 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap
  137. +10 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.xcconfig
  138. +26 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/Info.plist
  139. +26 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Info.plist
  140. +621 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-acknowledgements.markdown
  141. +665 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-acknowledgements.plist
  142. +5 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-dummy.m
  143. +103 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-frameworks.sh
  144. +102 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-resources.sh
  145. +16 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-umbrella.h
  146. +9 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.debug.xcconfig
  147. +6 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.modulemap
  148. +9 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.release.xcconfig
  149. +0 −72 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMGarbageCollection.h
  150. +0 −41 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.h
  151. +0 −45 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.m
  152. +0 −444 Paco-iOS/vendor/google-toolbox-for-mac/GTMDefines.h
  153. +0 −64 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMGatherInputStream.h
  154. +0 −197 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMGatherInputStream.m
  155. +0 −175 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetchHistory.h
  156. +0 −612 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetchHistory.m
  157. +0 −847 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.h
  158. +0 −2,156 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.m
  159. +0 −461 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.xcodeproj/project.pbxproj
  160. +0 −66 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogViewController.h
  161. +0 −275 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogViewController.m
  162. +0 −1,134 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogging.m
  163. +0 −130 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherService.h
  164. +0 −507 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherService.m
  165. +0 −139 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPUploadFetcher.h
  166. +0 −947 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPUploadFetcher.m
  167. +0 −57 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMMIMEDocument.h
  168. +0 −281 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMMIMEDocument.m
  169. +0 −65 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMReadMonitorInputStream.h
  170. +0 −189 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMReadMonitorInputStream.m
  171. +0 −84 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/ReleaseNotes.txt
  172. +0 −22 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/UnitTests-Info.plist
  173. +0 −65 Paco-iOS/vendor/gtm-oauth2/JSON/JSON.h
  174. +0 −53 Paco-iOS/vendor/gtm-oauth2/JSON/NSObject+SBJSON.h
  175. +0 −44 Paco-iOS/vendor/gtm-oauth2/JSON/NSObject+SBJSON.m
  176. +0 −48 Paco-iOS/vendor/gtm-oauth2/JSON/NSString+SBJSON.h
  177. +0 −45 Paco-iOS/vendor/gtm-oauth2/JSON/NSString+SBJSON.m
  178. +0 −86 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonBase.h
  179. +0 −78 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonBase.m
  180. +0 −86 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonParser.h
  181. +0 −516 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonParser.m
  182. +0 −127 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonWriter.h
  183. +0 −239 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonWriter.m
  184. +0 −686 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2.xcodeproj/project.pbxproj
  185. +0 −362 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2Authentication.h
  186. +0 −1,321 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2Authentication.m
  187. +0 −191 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2SignIn.h
  188. +0 −971 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2SignIn.m
  189. +0 −22 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2Framework-Info.plist
  190. +0 −336 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2WindowController.h
  191. +0 −728 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2WindowController.m
  192. +0 −132 Paco-iOS/vendor/gtm-oauth2/Source/ReleaseNotes.txt
  193. +0 −398 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewControllerTouch.h
  194. +0 −1,104 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewControllerTouch.m
  195. +0 −494 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewTouch.xib
  196. +1 −1 Paco-iOS/vendor/jcnotificationbannerpresenter/Library/JCNotificationBannerPresenter.h
  197. +0 −178 Paco-iOS/vendor/sskeychain/SSKeychain.h
  198. +0 −109 Paco-iOS/vendor/sskeychain/SSKeychain.m
  199. +0 −117 Paco-iOS/vendor/sskeychain/SSKeychainQuery.h
  200. +0 −267 Paco-iOS/vendor/sskeychain/SSKeychainQuery.m
  201. +0 −44 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleAppEngineAuth.h
  202. +0 −175 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleAppEngineAuth.m
  203. +0 −57 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleClientLogin.h
  204. +0 −197 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleClientLogin.m
View
@@ -67,6 +67,8 @@ DerivedData
Paco-iOS/Paco.xcodeproj/project.xcworkspace/xcuserdata/*
Paco-iOS/Paco.xcodeproj/project.xcworkspace/xcshareddata/*
Paco-iOS/Paco.xcodeproj/xcuserdata/*
+Paco-iOS/Paco.xcworkspace/xcuserdata/*
Paco-iOS/ParseKit/ParseKit.xcodeproj/xcuserdata/*
Paco-iOS/ParseKit/lib/OCMock/OCMock.xcodeproj/xcuserdata/*
-Paco-iOS/ParseKit/include*
+Paco-iOS/ParseKit/include*
+Paco-iOS/DerivedData/*

Large diffs are not rendered by default.

Oops, something went wrong.

Some generated files are not rendered by default. Learn more.

Oops, something went wrong.
@@ -1,27 +1,68 @@
{
"images" : [
{
+ "idiom" : "iphone",
+ "size" : "20x20",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "iphone",
+ "size" : "20x20",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "icon_ios7_settings_58.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "iphone",
+ "size" : "29x29",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "icon_ios7_spotlight_80.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "iphone",
+ "size" : "40x40",
+ "scale" : "3x"
+ },
+ {
"size" : "60x60",
"idiom" : "iphone",
"filename" : "icon_ios7_iphone_120.png",
"scale" : "2x"
},
{
- "size" : "76x76",
+ "idiom" : "iphone",
+ "size" : "60x60",
+ "scale" : "3x"
+ },
+ {
"idiom" : "ipad",
- "filename" : "icon_ios7_ipad_76.png",
+ "size" : "20x20",
"scale" : "1x"
},
{
- "size" : "76x76",
"idiom" : "ipad",
- "filename" : "icon_ios7_ipad_152.png",
+ "size" : "20x20",
"scale" : "2x"
},
{
- "size" : "40x40",
- "idiom" : "iphone",
- "filename" : "icon_ios7_spotlight_80.png",
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "icon_ios7_settings_29.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "icon_ios7_settings_58.png",
"scale" : "2x"
},
{
@@ -37,21 +78,20 @@
"scale" : "2x"
},
{
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "icon_ios7_settings_58.png",
- "scale" : "2x"
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "icon_ios7_ipad_76.png",
+ "scale" : "1x"
},
{
- "size" : "29x29",
+ "size" : "76x76",
"idiom" : "ipad",
- "filename" : "icon_ios7_settings_29.png",
- "scale" : "1x"
+ "filename" : "icon_ios7_ipad_152.png",
+ "scale" : "2x"
},
{
- "size" : "29x29",
"idiom" : "ipad",
- "filename" : "icon_ios7_settings_58.png",
+ "size" : "83.5x83.5",
"scale" : "2x"
}
],
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
@@ -1,55 +1,163 @@
{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ },
"images" : [
{
"orientation" : "portrait",
+ "filename" : "Default.png",
+ "idiom" : "iphone",
+ "scale" : "1x",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default@2x.png",
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "minimum-system-version" : "7.0",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default-568h@2x.png",
+ "idiom" : "iphone",
+ "subtype" : "retina4",
+ "scale" : "2x",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default-568h@2x.png",
+ "idiom" : "iphone",
+ "subtype" : "retina4",
+ "scale" : "2x",
+ "minimum-system-version" : "7.0",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default@2x.png",
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default~ipad.png",
+ "idiom" : "ipad",
+ "scale" : "1x",
+ "extent" : "to-status-bar"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default~ipad@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "extent" : "to-status-bar"
+ },
+ {
+ "orientation" : "landscape",
+ "filename" : "Default~ipad~landscape.png",
"idiom" : "ipad",
- "filename" : "splash_ios_tablet_768x1024.png",
+ "scale" : "1x",
+ "extent" : "to-status-bar"
+ },
+ {
+ "orientation" : "landscape",
+ "filename" : "Default~ipad~landscape@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "extent" : "to-status-bar",
+ "size" : "83.5x83.5"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default~ipad~nostatusbar.png",
+ "idiom" : "ipad",
+ "scale" : "1x",
"minimum-system-version" : "7.0",
- "extent" : "full-screen",
- "scale" : "1x"
+ "extent" : "full-screen"
},
{
"orientation" : "portrait",
+ "filename" : "Default~ipad~nostatusbar.png",
"idiom" : "ipad",
- "filename" : "splash_ios_tablet_768x1024@2x.png",
+ "scale" : "1x",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default~ipad~nostatusbar@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
"minimum-system-version" : "7.0",
- "extent" : "full-screen",
- "scale" : "2x"
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "portrait",
+ "filename" : "Default~ipad~nostatusbar@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "extent" : "full-screen"
},
{
"orientation" : "landscape",
+ "filename" : "Default~ipad~landscape~nostatusbar.png",
"idiom" : "ipad",
- "filename" : "splash_ios_tablet_1024x768.png",
+ "scale" : "1x",
"minimum-system-version" : "7.0",
- "extent" : "full-screen",
- "scale" : "1x"
+ "extent" : "full-screen"
},
{
"orientation" : "landscape",
+ "filename" : "Default~ipad~landscape~nostatusbar.png",
"idiom" : "ipad",
- "filename" : "splash_ios_tablet_1024x768@2x.png",
+ "scale" : "1x",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "landscape",
+ "filename" : "Default~ipad~landscape~nostatusbar@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
"minimum-system-version" : "7.0",
- "extent" : "full-screen",
- "scale" : "2x"
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "landscape",
+ "filename" : "Default~ipad~landscape~nostatusbar@2x.png",
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "extent" : "full-screen"
},
{
"orientation" : "portrait",
+ "filename" : "Default-Portrait-736h@3x.png",
"idiom" : "iphone",
- "filename" : "splash_ios_mobile_640x960.png",
- "minimum-system-version" : "7.0",
- "scale" : "2x"
+ "subtype" : "736h",
+ "scale" : "3x",
+ "minimum-system-version" : "8.0",
+ "extent" : "full-screen"
+ },
+ {
+ "orientation" : "landscape",
+ "filename" : "Default-Landscape-736h@3x.png",
+ "idiom" : "iphone",
+ "subtype" : "736h",
+ "scale" : "3x",
+ "minimum-system-version" : "8.0",
+ "extent" : "full-screen"
},
{
"orientation" : "portrait",
+ "filename" : "Default-667h@2x.png",
"idiom" : "iphone",
- "filename" : "splash_ios_mobile_640x1136.png",
- "minimum-system-version" : "7.0",
- "subtype" : "retina4",
- "scale" : "2x"
+ "subtype" : "667h",
+ "scale" : "2x",
+ "minimum-system-version" : "8.0",
+ "extent" : "full-screen"
}
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
+ ]
+}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -21,13 +21,32 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>1.1.7</string>
+ <string>1.1.8</string>
<key>CFBundleSignature</key>
<string>????</string>
+ <key>CFBundleURLTypes</key>
+ <array>
+ <dict>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>com.googleusercontent.apps.619519633889-f79aogqhj44eut1u75e8jaa5eav8p3eu</string>
+ </array>
+ </dict>
+ </array>
<key>CFBundleVersion</key>
- <string>1.1.7.1</string>
+ <string>1.1.8.2</string>
+ <key>LSApplicationCategoryType</key>
+ <string></string>
<key>LSRequiresIPhoneOS</key>
<true/>
+ <key>NSCameraUsageDescription</key>
+ <string>Used to add picture survey responses</string>
+ <key>NSLocationWhenInUseUsageDescription</key>
+ <string>This app will display your current location</string>
+ <key>NSPhotoLibraryUsageDescription</key>
+ <string>Used to allow the user to attach a photo from their library as a survey response.</string>
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
@@ -36,6 +55,8 @@
<array>
<string>armv7</string>
</array>
+ <key>UIRequiresFullScreen</key>
+ <true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
@@ -16,6 +16,7 @@
#import <UIKit/UIKit.h>
@class PacoMainViewController;
+@protocol OIDAuthorizationFlowSession;
@interface PacoAppDelegate : UIResponder <UIApplicationDelegate>
@@ -29,4 +30,12 @@
- (void)processNotificationIfNeeded;
+/*! @brief The authorization flow session which receives the return URL from
+ \SFSafariViewController.
+ @discussion We need to store this in the app delegate as it's that delegate which receives the
+ incoming URL on UIApplicationDelegate.application:openURL:options:. This property will be
+ nil, except when an authorization flow is in progress.
+ */
+@property(nonatomic, strong, nullable) id<OIDAuthorizationFlowSession> currentAuthorizationFlow;
+
@end
Oops, something went wrong.

0 comments on commit 558b080

Please sign in to comment.