Permalink
Please sign in to comment.
Showing
with
24,411 additions
and 19,475 deletions.
- +3 −1 .gitignore
- +116 −962 Paco-iOS/Paco.xcodeproj/project.pbxproj
- +10 −0 Paco-iOS/Paco.xcworkspace/contents.xcworkspacedata
- BIN Paco-iOS/Paco.xcworkspace/xcuserdata/bobevans.xcuserdatad/UserInterfaceState.xcuserstate
- +56 −16 Paco-iOS/Paco/config/Images.xcassets/AppIcon.appiconset/Contents.json
- +6 −0 Paco-iOS/Paco/config/Images.xcassets/Contents.json
- +133 −25 Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Contents.json
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape~nostatusbar.png
- BIN ...iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~landscape~nostatusbar@2x.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~nostatusbar.png
- BIN Paco-iOS/Paco/config/Images.xcassets/LaunchImage.launchimage/Default~ipad~nostatusbar@2x.png
- +23 −2 Paco-iOS/Paco/config/Paco-Info.plist
- +9 −0 Paco-iOS/Paco/source/PacoAppDelegate.h
- +25 −4 Paco-iOS/Paco/source/PacoAppDelegate.m
- +9 −3 Paco-iOS/Paco/source/core/authentication/PacoAuthenticator.h
- +127 −89 Paco-iOS/Paco/source/core/authentication/PacoAuthenticator.m
- +1 −1 Paco-iOS/Paco/source/core/client/PacoClient.m
- +1 −1 Paco-iOS/Paco/source/core/model/PacoExperimentInput.m
- +13 −1 Paco-iOS/Paco/source/core/scheduling/PacoNotificationManager.m
- +38 −41 Paco-iOS/Paco/source/core/service/PacoService.m
- +1 −0 Paco-iOS/Paco/source/ui/MainScreen/PacoMainViewController.h
- +18 −15 Paco-iOS/Paco/source/ui/MainScreen/PacoMainViewController.m
- +2 −4 Paco-iOS/Paco/source/ui/OpenSourceLibScreen/PacoOpenSourceLibViewController.m
- +8 −0 Paco-iOS/Paco/source/ui/QuestionScreen/PacoQuestionView.m
- BIN Paco-iOS/Paco/sourceImages/assets/splash_ios_tablet_1024x768@2x.png
- BIN Paco-iOS/Paco/sourceImages/icons/icon_ios7_ipad_152.png
- +2 −0 Paco-iOS/ParseKit/ParseKit.xcodeproj/project.pbxproj
- +9 −0 Paco-iOS/Podfile
- +24 −0 Paco-iOS/Podfile.lock
- +202 −0 Paco-iOS/Pods/AppAuth/LICENSE
- +327 −0 Paco-iOS/Pods/AppAuth/README.md
- +81 −0 Paco-iOS/Pods/AppAuth/Source/AppAuth.h
- +238 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthState.h
- +499 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthState.m
- +39 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthStateChangeDelegate.h
- +62 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthStateErrorDelegate.h
- +233 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationRequest.h
- +300 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationRequest.m
- +128 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationResponse.h
- +209 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationResponse.m
- +156 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationService.h
- +354 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationService.m
- +51 −0 Paco-iOS/Pods/AppAuth/Source/OIDAuthorizationUICoordinator.h
- +44 −0 Paco-iOS/Pods/AppAuth/Source/OIDDefines.h
- +318 −0 Paco-iOS/Pods/AppAuth/Source/OIDError.h
- +40 −0 Paco-iOS/Pods/AppAuth/Source/OIDError.m
- +107 −0 Paco-iOS/Pods/AppAuth/Source/OIDErrorUtilities.h
- +160 −0 Paco-iOS/Pods/AppAuth/Source/OIDErrorUtilities.m
- +116 −0 Paco-iOS/Pods/AppAuth/Source/OIDFieldMapping.h
- +112 −0 Paco-iOS/Pods/AppAuth/Source/OIDFieldMapping.m
- +40 −0 Paco-iOS/Pods/AppAuth/Source/OIDGrantTypes.h
- +27 −0 Paco-iOS/Pods/AppAuth/Source/OIDGrantTypes.m
- +31 −0 Paco-iOS/Pods/AppAuth/Source/OIDResponseTypes.h
- +25 −0 Paco-iOS/Pods/AppAuth/Source/OIDResponseTypes.m
- +48 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopeUtilities.h
- +58 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopeUtilities.m
- +46 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopes.h
- +29 −0 Paco-iOS/Pods/AppAuth/Source/OIDScopes.m
- +68 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceConfiguration.h
- +132 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceConfiguration.m
- +352 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceDiscovery.h
- +350 −0 Paco-iOS/Pods/AppAuth/Source/OIDServiceDiscovery.m
- +158 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenRequest.h
- +274 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenRequest.m
- +102 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenResponse.h
- +168 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenResponse.m
- +55 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenUtilities.h
- +51 −0 Paco-iOS/Pods/AppAuth/Source/OIDTokenUtilities.m
- +79 −0 Paco-iOS/Pods/AppAuth/Source/OIDURLQueryComponent.h
- +197 −0 Paco-iOS/Pods/AppAuth/Source/OIDURLQueryComponent.m
- +46 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthState+IOS.h
- +36 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthState+IOS.m
- +44 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationService+IOS.h
- +38 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationService+IOS.m
- +66 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationUICoordinatorIOS.h
- +154 −0 Paco-iOS/Pods/AppAuth/Source/iOS/OIDAuthorizationUICoordinatorIOS.m
- +202 −0 Paco-iOS/Pods/GTMAppAuth/LICENSE
- +372 −0 Paco-iOS/Pods/GTMAppAuth/README.md
- +30 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuth.h
- +52 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization+Keychain.h
- +46 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization+Keychain.m
- +133 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization.h
- +518 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMAppAuthFetcherAuthorization.m
- +62 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMKeychain.h
- +135 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMOAuth2KeychainCompatibility/GTMOAuth2KeychainCompatibility.h
- +321 −0 Paco-iOS/Pods/GTMAppAuth/Source/GTMOAuth2KeychainCompatibility/GTMOAuth2KeychainCompatibility.m
- +287 −0 Paco-iOS/Pods/GTMAppAuth/Source/iOS/GTMKeychain_iOS.m
- +202 −0 Paco-iOS/Pods/GTMSessionFetcher/LICENSE
- +23 −0 Paco-iOS/Pods/GTMSessionFetcher/README.md
- +52 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.h
- +185 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.m
- +148 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.h
- +629 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.m
- +49 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMReadMonitorInputStream.h
- +187 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMReadMonitorInputStream.m
- +1,308 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h
- +4,549 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m
- +27 −23 ...2/HTTPFetcher/GTMHTTPFetcherLogging.h → Pods/GTMSessionFetcher/Source/GTMSessionFetcherLogging.h}
- +976 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherLogging.m
- +190 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.h
- +1,352 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionFetcherService.m
- +128 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.h
- +1,804 −0 Paco-iOS/Pods/GTMSessionFetcher/Source/GTMSessionUploadFetcher.m
- +24 −0 Paco-iOS/Pods/Manifest.lock
- +1,206 −0 Paco-iOS/Pods/Pods.xcodeproj/project.pbxproj
- +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/AppAuth.xcscheme
- +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/GTMAppAuth.xcscheme
- +60 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/GTMSessionFetcher.xcscheme
- +71 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/Pods-Paco.xcscheme
- +52 −0 Paco-iOS/Pods/Pods.xcodeproj/xcuserdata/bobevans.xcuserdatad/xcschemes/xcschememanagement.plist
- +5 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-dummy.m
- +12 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-prefix.pch
- +41 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth-umbrella.h
- +6 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth.modulemap
- +11 −0 Paco-iOS/Pods/Target Support Files/AppAuth/AppAuth.xcconfig
- +26 −0 Paco-iOS/Pods/Target Support Files/AppAuth/Info.plist
- +5 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m
- +12 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch
- +21 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h
- +6 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap
- +11 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.xcconfig
- +26 −0 Paco-iOS/Pods/Target Support Files/GTMAppAuth/Info.plist
- +5 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-dummy.m
- +12 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-prefix.pch
- +23 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h
- +6 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap
- +10 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.xcconfig
- +26 −0 Paco-iOS/Pods/Target Support Files/GTMSessionFetcher/Info.plist
- +26 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Info.plist
- +621 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-acknowledgements.markdown
- +665 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-acknowledgements.plist
- +5 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-dummy.m
- +103 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-frameworks.sh
- +102 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-resources.sh
- +16 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco-umbrella.h
- +9 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.debug.xcconfig
- +6 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.modulemap
- +9 −0 Paco-iOS/Pods/Target Support Files/Pods-Paco/Pods-Paco.release.xcconfig
- +0 −72 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMGarbageCollection.h
- +0 −41 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.h
- +0 −45 Paco-iOS/vendor/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.m
- +0 −444 Paco-iOS/vendor/google-toolbox-for-mac/GTMDefines.h
- +0 −64 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMGatherInputStream.h
- +0 −197 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMGatherInputStream.m
- +0 −175 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetchHistory.h
- +0 −612 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetchHistory.m
- +0 −847 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.h
- +0 −2,156 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.m
- +0 −461 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcher.xcodeproj/project.pbxproj
- +0 −66 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogViewController.h
- +0 −275 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogViewController.m
- +0 −1,134 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherLogging.m
- +0 −130 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherService.h
- +0 −507 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPFetcherService.m
- +0 −139 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPUploadFetcher.h
- +0 −947 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMHTTPUploadFetcher.m
- +0 −57 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMMIMEDocument.h
- +0 −281 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMMIMEDocument.m
- +0 −65 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMReadMonitorInputStream.h
- +0 −189 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/GTMReadMonitorInputStream.m
- +0 −84 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/ReleaseNotes.txt
- +0 −22 Paco-iOS/vendor/gtm-oauth2/HTTPFetcher/UnitTests-Info.plist
- +0 −65 Paco-iOS/vendor/gtm-oauth2/JSON/JSON.h
- +0 −53 Paco-iOS/vendor/gtm-oauth2/JSON/NSObject+SBJSON.h
- +0 −44 Paco-iOS/vendor/gtm-oauth2/JSON/NSObject+SBJSON.m
- +0 −48 Paco-iOS/vendor/gtm-oauth2/JSON/NSString+SBJSON.h
- +0 −45 Paco-iOS/vendor/gtm-oauth2/JSON/NSString+SBJSON.m
- +0 −86 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonBase.h
- +0 −78 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonBase.m
- +0 −86 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonParser.h
- +0 −516 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonParser.m
- +0 −127 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonWriter.h
- +0 −239 Paco-iOS/vendor/gtm-oauth2/JSON/SBJsonWriter.m
- +0 −686 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2.xcodeproj/project.pbxproj
- +0 −362 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2Authentication.h
- +0 −1,321 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2Authentication.m
- +0 −191 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2SignIn.h
- +0 −971 Paco-iOS/vendor/gtm-oauth2/Source/GTMOAuth2SignIn.m
- +0 −22 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2Framework-Info.plist
- +0 −336 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2WindowController.h
- +0 −728 Paco-iOS/vendor/gtm-oauth2/Source/Mac/GTMOAuth2WindowController.m
- +0 −132 Paco-iOS/vendor/gtm-oauth2/Source/ReleaseNotes.txt
- +0 −398 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewControllerTouch.h
- +0 −1,104 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewControllerTouch.m
- +0 −494 Paco-iOS/vendor/gtm-oauth2/Source/Touch/GTMOAuth2ViewTouch.xib
- +1 −1 Paco-iOS/vendor/jcnotificationbannerpresenter/Library/JCNotificationBannerPresenter.h
- +0 −178 Paco-iOS/vendor/sskeychain/SSKeychain.h
- +0 −109 Paco-iOS/vendor/sskeychain/SSKeychain.m
- +0 −117 Paco-iOS/vendor/sskeychain/SSKeychainQuery.h
- +0 −267 Paco-iOS/vendor/sskeychain/SSKeychainQuery.m
- +0 −44 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleAppEngineAuth.h
- +0 −175 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleAppEngineAuth.m
- +0 −57 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleClientLogin.h
- +0 −197 Paco-iOS/vendor/touchengine/iPhone/GoogleAppEngineAuthGithub/GoogleClientLogin.m
Binary file not shown.
| @@ -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.
Oops, something went wrong.
0 comments on commit
558b080