├── .gitignore ├── .gitmodules ├── Documentation └── Empty Zapp.png ├── LICENSE ├── README.md ├── Zapp.icns ├── Zapp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Zapp.xcscheme └── Zapp ├── Repositories.xcdatamodeld ├── .xccurrentversion └── Repositories.xcdatamodel │ └── contents ├── Zapp-Info.plist ├── Zapp-Prefix.pch ├── ZappAppDelegate.h ├── ZappAppDelegate.m ├── ZappBackgroundView.h ├── ZappBackgroundView.m ├── ZappBuild.h ├── ZappBuild.m ├── ZappGlobals.h ├── ZappLocalURLFormatter.h ├── ZappLocalURLFormatter.m ├── ZappMail.png ├── ZappMessageController.h ├── ZappMessageController.m ├── ZappRepositoriesController.h ├── ZappRepositoriesController.m ├── ZappRepository.h ├── ZappRepository.m ├── ZappSSHURLFormatter.h ├── ZappSSHURLFormatter.m ├── ZappSimulatorController.h ├── ZappSimulatorController.m ├── ZappVideoController.h ├── ZappVideoController.m ├── ZappWebServer.h ├── ZappWebServer.m ├── en.lproj ├── Credits.rtf ├── InfoPlist.strings └── MainMenu.xib ├── greencircle.png ├── hide.png ├── iPhoneSimulatorRemoteClient.h ├── main.m ├── redtriangle.png └── reveal.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | xcuserdata/ 4 | build/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Documentation/Empty Zapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Documentation/Empty Zapp.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/README.md -------------------------------------------------------------------------------- /Zapp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp.icns -------------------------------------------------------------------------------- /Zapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Zapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Zapp.xcodeproj/xcshareddata/xcschemes/Zapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp.xcodeproj/xcshareddata/xcschemes/Zapp.xcscheme -------------------------------------------------------------------------------- /Zapp/Repositories.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/Repositories.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Zapp/Repositories.xcdatamodeld/Repositories.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/Repositories.xcdatamodeld/Repositories.xcdatamodel/contents -------------------------------------------------------------------------------- /Zapp/Zapp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/Zapp-Info.plist -------------------------------------------------------------------------------- /Zapp/Zapp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/Zapp-Prefix.pch -------------------------------------------------------------------------------- /Zapp/ZappAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappAppDelegate.h -------------------------------------------------------------------------------- /Zapp/ZappAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappAppDelegate.m -------------------------------------------------------------------------------- /Zapp/ZappBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappBackgroundView.h -------------------------------------------------------------------------------- /Zapp/ZappBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappBackgroundView.m -------------------------------------------------------------------------------- /Zapp/ZappBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappBuild.h -------------------------------------------------------------------------------- /Zapp/ZappBuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappBuild.m -------------------------------------------------------------------------------- /Zapp/ZappGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappGlobals.h -------------------------------------------------------------------------------- /Zapp/ZappLocalURLFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappLocalURLFormatter.h -------------------------------------------------------------------------------- /Zapp/ZappLocalURLFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappLocalURLFormatter.m -------------------------------------------------------------------------------- /Zapp/ZappMail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappMail.png -------------------------------------------------------------------------------- /Zapp/ZappMessageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappMessageController.h -------------------------------------------------------------------------------- /Zapp/ZappMessageController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappMessageController.m -------------------------------------------------------------------------------- /Zapp/ZappRepositoriesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappRepositoriesController.h -------------------------------------------------------------------------------- /Zapp/ZappRepositoriesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappRepositoriesController.m -------------------------------------------------------------------------------- /Zapp/ZappRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappRepository.h -------------------------------------------------------------------------------- /Zapp/ZappRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappRepository.m -------------------------------------------------------------------------------- /Zapp/ZappSSHURLFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappSSHURLFormatter.h -------------------------------------------------------------------------------- /Zapp/ZappSSHURLFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappSSHURLFormatter.m -------------------------------------------------------------------------------- /Zapp/ZappSimulatorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappSimulatorController.h -------------------------------------------------------------------------------- /Zapp/ZappSimulatorController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappSimulatorController.m -------------------------------------------------------------------------------- /Zapp/ZappVideoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappVideoController.h -------------------------------------------------------------------------------- /Zapp/ZappVideoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappVideoController.m -------------------------------------------------------------------------------- /Zapp/ZappWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappWebServer.h -------------------------------------------------------------------------------- /Zapp/ZappWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/ZappWebServer.m -------------------------------------------------------------------------------- /Zapp/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Zapp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Zapp/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Zapp/greencircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/greencircle.png -------------------------------------------------------------------------------- /Zapp/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/hide.png -------------------------------------------------------------------------------- /Zapp/iPhoneSimulatorRemoteClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/iPhoneSimulatorRemoteClient.h -------------------------------------------------------------------------------- /Zapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/main.m -------------------------------------------------------------------------------- /Zapp/redtriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/redtriangle.png -------------------------------------------------------------------------------- /Zapp/reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/zapp/HEAD/Zapp/reveal.png --------------------------------------------------------------------------------