├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── Assets ├── lickability-logo.png ├── logo.png └── screenshots.png ├── Design ├── Icons.sketch ├── Pinpoint Logos.sketch └── PinpointKit.sketch ├── Example ├── Gemfile ├── Gemfile.lock ├── PinpointKitExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PinpointKitExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PinpointKitExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-120x120-1.png │ │ │ ├── AppIcon-120x120.png │ │ │ ├── AppIcon-152x152.png │ │ │ ├── AppIcon-167x167.png │ │ │ ├── AppIcon-180x180.png │ │ │ ├── AppIcon-29x29.png │ │ │ ├── AppIcon-40x40.png │ │ │ ├── AppIcon-58x58-1.png │ │ │ ├── AppIcon-58x58.png │ │ │ ├── AppIcon-76x76.png │ │ │ ├── AppIcon-80x80-1.png │ │ │ ├── AppIcon-80x80.png │ │ │ ├── AppIcon-87x87.png │ │ │ ├── Contents.json │ │ │ └── Group.png │ │ ├── Contents.json │ │ ├── ackerson.imageset │ │ │ ├── Contents.json │ │ │ └── ackerson.jpeg │ │ ├── bischoff.imageset │ │ │ ├── Contents.json │ │ │ └── bischoff.jpeg │ │ ├── capps.imageset │ │ │ ├── Contents.json │ │ │ └── capps.png │ │ ├── davenport.imageset │ │ │ ├── Contents.json │ │ │ └── davenport.jpeg │ │ ├── harrison.imageset │ │ │ ├── Contents.json │ │ │ └── harrison.png │ │ ├── liberatore.imageset │ │ │ ├── Contents.json │ │ │ └── liberatore.png │ │ └── rehkugler.imageset │ │ │ ├── Contents.json │ │ │ └── rehkugler.jpeg │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── PinpointKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SwiftLint │ ├── LICENSE │ └── swiftlint │ └── Target Support Files │ ├── PinpointKit │ ├── Info.plist │ ├── PinpointKit-dummy.m │ ├── PinpointKit-prefix.pch │ ├── PinpointKit-umbrella.h │ ├── PinpointKit.modulemap │ └── PinpointKit.xcconfig │ └── Pods-PinpointKitExample │ ├── Info.plist │ ├── Pods-PinpointKitExample-acknowledgements.markdown │ ├── Pods-PinpointKitExample-acknowledgements.plist │ ├── Pods-PinpointKitExample-dummy.m │ ├── Pods-PinpointKitExample-frameworks.sh │ ├── Pods-PinpointKitExample-resources.sh │ ├── Pods-PinpointKitExample-umbrella.h │ ├── Pods-PinpointKitExample.debug.xcconfig │ ├── Pods-PinpointKitExample.modulemap │ └── Pods-PinpointKitExample.release.xcconfig ├── LICENSE ├── Package.swift ├── PinpointKit.podspec.json ├── PinpointKit ├── PinpointKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── PinpointKit.xcscheme ├── PinpointKit │ ├── Info.plist │ ├── Resources │ │ ├── PinpointKit.xcassets │ │ │ ├── Checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UniversalCheckmark.png │ │ │ │ ├── UniversalCheckmark@2x.png │ │ │ │ └── UniversalCheckmark@3x.png │ │ │ ├── CloseButtonX.imageset │ │ │ │ ├── CloseButtonX.png │ │ │ │ ├── CloseButtonX@2x.png │ │ │ │ ├── CloseButtonX@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Segmented Control │ │ │ │ ├── ArrowIcon.imageset │ │ │ │ ├── ArrowIcon.png │ │ │ │ ├── ArrowIcon@2x.png │ │ │ │ └── Contents.json │ │ │ │ ├── BlurIcon.imageset │ │ │ │ ├── BlurIcon.png │ │ │ │ ├── BlurIcon@2x.png │ │ │ │ └── Contents.json │ │ │ │ └── BoxIcon.imageset │ │ │ │ ├── BoxIcon.png │ │ │ │ ├── BoxIcon@2x.png │ │ │ │ └── Contents.json │ │ ├── SourceSansPro-Bold.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ └── SourceSansPro-Semibold.ttf │ └── Sources │ │ ├── ASLLogger │ │ ├── ASLLogger.h │ │ └── ASLLogger.m │ │ ├── Core │ │ ├── ASLLogger.h │ │ ├── ASLLogger.m │ │ ├── AnnotationView.swift │ │ ├── Annotations.swift │ │ ├── AnnotationsView.swift │ │ ├── ArrowAnnotationView.swift │ │ ├── BarButtonItem.swift │ │ ├── BasicLogViewController.swift │ │ ├── BezierPath.swift │ │ ├── BlurAnnotationView.swift │ │ ├── BoxAnnotationView.swift │ │ ├── CheckmarkCell.swift │ │ ├── Configuration.swift │ │ ├── Editing │ │ │ ├── AnnotationViewFactory.swift │ │ │ ├── EditImageViewController.swift │ │ │ ├── EditImageViewControllerBarButtonItemProviding.swift │ │ │ ├── Editor.swift │ │ │ ├── EditorDelegate.swift │ │ │ └── Tool.swift │ │ ├── Feedback.swift │ │ ├── FeedbackCollector.swift │ │ ├── FeedbackConfiguration.swift │ │ ├── FeedbackNavigationController.swift │ │ ├── FeedbackTableViewDataSource.swift │ │ ├── FeedbackViewController.swift │ │ ├── Fonts.swift │ │ ├── InterfaceCustomizable.swift │ │ ├── InterfaceCustomization.swift │ │ ├── KeyboardAvoider.swift │ │ ├── LogCollector.swift │ │ ├── LogSupporting.swift │ │ ├── LogViewer.swift │ │ ├── MIMEType.swift │ │ ├── MailSender.swift │ │ ├── NSBundle+PinpointKit.swift │ │ ├── NavigationController.swift │ │ ├── PinpointKit+ShakePresentation.swift │ │ ├── PinpointKit.h │ │ ├── PinpointKit.swift │ │ ├── RequestScreenshotCell.swift │ │ ├── Screen.swift │ │ ├── ScreenshotCell.swift │ │ ├── Screenshotter.swift │ │ ├── Sender.swift │ │ ├── ShakeDetectingWindow.swift │ │ ├── ShakeDetectingWindowDelegate.swift │ │ ├── SourceSansPro-Bold.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ ├── SourceSansPro-Semibold.ttf │ │ ├── StrokeLayoutManager.swift │ │ ├── SuccessType.swift │ │ ├── SystemLogCollector.swift │ │ ├── TextAnnotationView.swift │ │ ├── UIBarButtonItem+TitleTextAttributeStates.swift │ │ ├── UIColor+Palette.swift │ │ ├── UIGestureRecognizer+FailRecognizing.swift │ │ └── UIView+PinpointKit.swift │ │ └── ScreenshotDetector │ │ └── ScreenshotDetector.swift └── PinpointKitTests │ ├── Info.plist │ ├── SystemLogCollectorTests.swift │ └── XCTestCaseExpectationExtensions.swift └── README.md /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Assets/lickability-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Assets/lickability-logo.png -------------------------------------------------------------------------------- /Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Assets/logo.png -------------------------------------------------------------------------------- /Assets/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Assets/screenshots.png -------------------------------------------------------------------------------- /Design/Icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Design/Icons.sketch -------------------------------------------------------------------------------- /Design/Pinpoint Logos.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Design/Pinpoint Logos.sketch -------------------------------------------------------------------------------- /Design/PinpointKit.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Design/PinpointKit.sketch -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods', '1.5.0' 4 | -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/PinpointKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PinpointKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PinpointKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PinpointKitExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PinpointKitExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PinpointKitExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-120x120-1.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-120x120.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-152x152.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-167x167.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-180x180.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-58x58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-58x58-1.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-58x58.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-80x80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-80x80-1.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-80x80.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/AppIcon-87x87.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/AppIcon.appiconset/Group.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/ackerson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/ackerson.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/ackerson.imageset/ackerson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/ackerson.imageset/ackerson.jpeg -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/bischoff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/bischoff.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/bischoff.imageset/bischoff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/bischoff.imageset/bischoff.jpeg -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/capps.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/capps.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/capps.imageset/capps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/capps.imageset/capps.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/davenport.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/davenport.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/davenport.imageset/davenport.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/davenport.imageset/davenport.jpeg -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/harrison.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/harrison.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/harrison.imageset/harrison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/harrison.imageset/harrison.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/liberatore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/liberatore.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/liberatore.imageset/liberatore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/liberatore.imageset/liberatore.png -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/rehkugler.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/rehkugler.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PinpointKitExample/Assets.xcassets/rehkugler.imageset/rehkugler.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Assets.xcassets/rehkugler.imageset/rehkugler.jpeg -------------------------------------------------------------------------------- /Example/PinpointKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/PinpointKitExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PinpointKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/Info.plist -------------------------------------------------------------------------------- /Example/PinpointKitExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/PinpointKitExample/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PinpointKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Local Podspecs/PinpointKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SwiftLint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/SwiftLint/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/PinpointKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/PinpointKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/PinpointKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/PinpointKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/PinpointKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/PinpointKit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/PinpointKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/PinpointKit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PinpointKit/PinpointKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/PinpointKit/PinpointKit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Example/Pods/Target Support Files/Pods-PinpointKitExample/Pods-PinpointKitExample.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/Package.swift -------------------------------------------------------------------------------- /PinpointKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit.podspec.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PinpointKit/PinpointKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PinpointKit/PinpointKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PinpointKit/PinpointKit.xcodeproj/xcshareddata/xcschemes/PinpointKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit.xcodeproj/xcshareddata/xcschemes/PinpointKit.xcscheme -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Info.plist -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark@2x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Checkmark.imageset/UniversalCheckmark@3x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX@2x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/CloseButtonX@3x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/CloseButtonX.imageset/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/ArrowIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/ArrowIcon.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/ArrowIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/ArrowIcon@2x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/ArrowIcon.imageset/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/BlurIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/BlurIcon.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/BlurIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/BlurIcon@2x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BlurIcon.imageset/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/BoxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/BoxIcon.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/BoxIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/BoxIcon@2x.png -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/PinpointKit.xcassets/Segmented Control/BoxIcon.imageset/Contents.json -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Resources/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Resources/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/ASLLogger/ASLLogger.h: -------------------------------------------------------------------------------- 1 | ../Core/ASLLogger.h -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/ASLLogger/ASLLogger.m: -------------------------------------------------------------------------------- 1 | ../Core/ASLLogger.m -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ASLLogger.h -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ASLLogger.m -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/AnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/AnnotationView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Annotations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Annotations.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/AnnotationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/AnnotationsView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ArrowAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ArrowAnnotationView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/BarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/BarButtonItem.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/BasicLogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/BasicLogViewController.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/BezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/BezierPath.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/BlurAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/BlurAnnotationView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/BoxAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/BoxAnnotationView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/CheckmarkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/CheckmarkCell.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Configuration.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/AnnotationViewFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/AnnotationViewFactory.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/EditImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/EditImageViewController.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/EditImageViewControllerBarButtonItemProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/EditImageViewControllerBarButtonItemProviding.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/Editor.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/EditorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/EditorDelegate.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Editing/Tool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Editing/Tool.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Feedback.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/FeedbackCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/FeedbackCollector.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/FeedbackConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/FeedbackConfiguration.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/FeedbackNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/FeedbackNavigationController.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/FeedbackTableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/FeedbackTableViewDataSource.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/FeedbackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/FeedbackViewController.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Fonts.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/InterfaceCustomizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/InterfaceCustomizable.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/InterfaceCustomization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/InterfaceCustomization.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/KeyboardAvoider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/KeyboardAvoider.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/LogCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/LogCollector.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/LogSupporting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/LogSupporting.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/LogViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/LogViewer.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/MIMEType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/MIMEType.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/MailSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/MailSender.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/NSBundle+PinpointKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/NSBundle+PinpointKit.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/NavigationController.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/PinpointKit+ShakePresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/PinpointKit+ShakePresentation.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/PinpointKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/PinpointKit.h -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/PinpointKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/PinpointKit.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/RequestScreenshotCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/RequestScreenshotCell.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Screen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Screen.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ScreenshotCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ScreenshotCell.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Screenshotter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Screenshotter.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/Sender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/Sender.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ShakeDetectingWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ShakeDetectingWindow.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/ShakeDetectingWindowDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/ShakeDetectingWindowDelegate.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/StrokeLayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/StrokeLayoutManager.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/SuccessType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/SuccessType.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/SystemLogCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/SystemLogCollector.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/TextAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/TextAnnotationView.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/UIBarButtonItem+TitleTextAttributeStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/UIBarButtonItem+TitleTextAttributeStates.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/UIColor+Palette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/UIColor+Palette.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/UIGestureRecognizer+FailRecognizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/UIGestureRecognizer+FailRecognizing.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/Core/UIView+PinpointKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/Core/UIView+PinpointKit.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKit/Sources/ScreenshotDetector/ScreenshotDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKit/Sources/ScreenshotDetector/ScreenshotDetector.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKitTests/Info.plist -------------------------------------------------------------------------------- /PinpointKit/PinpointKitTests/SystemLogCollectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKitTests/SystemLogCollectorTests.swift -------------------------------------------------------------------------------- /PinpointKit/PinpointKitTests/XCTestCaseExpectationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/PinpointKit/PinpointKitTests/XCTestCaseExpectationExtensions.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lickability/PinpointKit/HEAD/README.md --------------------------------------------------------------------------------