├── .gitignore ├── .swift-version ├── .travis.yml ├── ClientScreenshot.png ├── Example ├── GitYourFeedback.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GitYourFeedack-Example.xcscheme ├── GitYourFeedback.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── GitYourFeedback │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Config.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── CLImageEditor │ ├── CLImageEditor │ │ ├── CLImageEditor.bundle │ │ │ ├── CLAdjustmentTool │ │ │ │ ├── black │ │ │ │ │ ├── brightness.png │ │ │ │ │ ├── brightness@2x.png │ │ │ │ │ ├── contrast.png │ │ │ │ │ ├── contrast@2x.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── saturation.png │ │ │ │ │ └── saturation@2x.png │ │ │ │ └── white │ │ │ │ │ ├── brightness.png │ │ │ │ │ ├── brightness@2x.png │ │ │ │ │ ├── contrast.png │ │ │ │ │ ├── contrast@2x.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── saturation.png │ │ │ │ │ └── saturation@2x.png │ │ │ ├── CLBlurTool │ │ │ │ ├── black │ │ │ │ │ ├── band.png │ │ │ │ │ ├── btn_band.png │ │ │ │ │ ├── btn_circle.png │ │ │ │ │ ├── btn_normal.png │ │ │ │ │ ├── circle.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── band.png │ │ │ │ │ ├── btn_band.png │ │ │ │ │ ├── btn_circle.png │ │ │ │ │ ├── btn_normal.png │ │ │ │ │ ├── circle.png │ │ │ │ │ └── icon.png │ │ │ ├── CLClippingTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_rotate.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_rotate.png │ │ │ │ │ └── icon.png │ │ │ ├── CLDrawTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_eraser.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_eraser.png │ │ │ │ │ └── icon.png │ │ │ ├── CLEffectTool │ │ │ │ ├── CLBloomEffect.png │ │ │ │ ├── CLEffectBase.png │ │ │ │ ├── CLGloomEffect.png │ │ │ │ ├── CLHighlightShadowEffect.png │ │ │ │ ├── CLHueEffect.png │ │ │ │ ├── CLPixellateEffect.png │ │ │ │ ├── CLPosterizeEffect.png │ │ │ │ ├── CLSpotEffect.png │ │ │ │ ├── black │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ └── icon.png │ │ │ ├── CLEmoticonTool │ │ │ │ ├── Copyright │ │ │ │ ├── Emoticons │ │ │ │ │ ├── 001.png │ │ │ │ │ ├── 002.png │ │ │ │ │ ├── 003.png │ │ │ │ │ ├── 004.png │ │ │ │ │ ├── 005.png │ │ │ │ │ ├── 006.png │ │ │ │ │ ├── 007.png │ │ │ │ │ ├── 008.png │ │ │ │ │ ├── 009.png │ │ │ │ │ ├── 010.png │ │ │ │ │ ├── 011.png │ │ │ │ │ ├── 012.png │ │ │ │ │ ├── 013.png │ │ │ │ │ ├── 014.png │ │ │ │ │ ├── 015.png │ │ │ │ │ ├── 016.png │ │ │ │ │ └── 017.png │ │ │ │ ├── black │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ └── icon.png │ │ │ ├── CLFilterTool │ │ │ │ ├── black │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ └── icon.png │ │ │ ├── CLResizeTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_chain_off.png │ │ │ │ │ ├── btn_chain_on.png │ │ │ │ │ ├── btn_height.png │ │ │ │ │ ├── btn_width.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_chain_off.png │ │ │ │ │ ├── btn_chain_on.png │ │ │ │ │ ├── btn_height.png │ │ │ │ │ ├── btn_width.png │ │ │ │ │ └── icon.png │ │ │ ├── CLRotateTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_flip1.png │ │ │ │ │ ├── btn_flip2.png │ │ │ │ │ ├── btn_rotate.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_flip1.png │ │ │ │ │ ├── btn_flip2.png │ │ │ │ │ ├── btn_rotate.png │ │ │ │ │ └── icon.png │ │ │ ├── CLSplashTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_eraser.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_eraser.png │ │ │ │ │ └── icon.png │ │ │ ├── CLStickerTool │ │ │ │ ├── Copyright │ │ │ │ ├── black │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ └── icon.png │ │ │ │ ├── stickers │ │ │ │ │ ├── 001.png │ │ │ │ │ ├── 002.png │ │ │ │ │ ├── 003.png │ │ │ │ │ ├── 004.png │ │ │ │ │ ├── 005.png │ │ │ │ │ ├── 006.png │ │ │ │ │ ├── 007.png │ │ │ │ │ ├── 008.png │ │ │ │ │ ├── 009.png │ │ │ │ │ ├── 010.png │ │ │ │ │ ├── 011.png │ │ │ │ │ └── 012.png │ │ │ │ └── white │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ └── icon.png │ │ │ ├── CLTextTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_add.png │ │ │ │ │ ├── btn_align_center.png │ │ │ │ │ ├── btn_align_left.png │ │ │ │ │ ├── btn_align_right.png │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ ├── btn_font.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_add.png │ │ │ │ │ ├── btn_align_center.png │ │ │ │ │ ├── btn_align_left.png │ │ │ │ │ ├── btn_align_right.png │ │ │ │ │ ├── btn_delete.png │ │ │ │ │ ├── btn_font.png │ │ │ │ │ └── icon.png │ │ │ ├── CLToneCurveTool │ │ │ │ ├── black │ │ │ │ │ ├── btn_arrow.png │ │ │ │ │ ├── btn_reset.png │ │ │ │ │ └── icon.png │ │ │ │ └── white │ │ │ │ │ ├── btn_arrow.png │ │ │ │ │ ├── btn_reset.png │ │ │ │ │ └── icon.png │ │ │ └── Resources │ │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── CLImageEditor.h │ │ ├── CLImageEditor.m │ │ ├── CLImageEditorTheme.h │ │ ├── CLImageEditorTheme.m │ │ ├── CLImageToolInfo.h │ │ ├── CLImageToolInfo.m │ │ ├── ImageTools │ │ │ ├── CLAdjustmentTool │ │ │ │ ├── CLAdjustmentTool.h │ │ │ │ └── CLAdjustmentTool.m │ │ │ ├── CLBlurTool │ │ │ │ ├── CLBlurTool.h │ │ │ │ └── CLBlurTool.m │ │ │ ├── CLClippingTool │ │ │ │ ├── CLClippingTool.h │ │ │ │ └── CLClippingTool.m │ │ │ ├── CLDrawTool │ │ │ │ ├── CLDrawTool.h │ │ │ │ └── CLDrawTool.m │ │ │ ├── CLEffectTool │ │ │ │ ├── CLEffect │ │ │ │ │ ├── CLBloomEffect.h │ │ │ │ │ ├── CLBloomEffect.m │ │ │ │ │ ├── CLGloomEffect.h │ │ │ │ │ ├── CLGloomEffect.m │ │ │ │ │ ├── CLHighlightShadowEffect.h │ │ │ │ │ ├── CLHighlightShadowEffect.m │ │ │ │ │ ├── CLHueEffect.h │ │ │ │ │ ├── CLHueEffect.m │ │ │ │ │ ├── CLPixellateEffect.h │ │ │ │ │ ├── CLPixellateEffect.m │ │ │ │ │ ├── CLPosterizeEffect.h │ │ │ │ │ ├── CLPosterizeEffect.m │ │ │ │ │ ├── CLSpotEffect.h │ │ │ │ │ └── CLSpotEffect.m │ │ │ │ ├── CLEffectBase.h │ │ │ │ ├── CLEffectBase.m │ │ │ │ ├── CLEffectTool.h │ │ │ │ └── CLEffectTool.m │ │ │ ├── CLFilterTool │ │ │ │ ├── CLFilterBase.h │ │ │ │ ├── CLFilterBase.m │ │ │ │ ├── CLFilterTool.h │ │ │ │ └── CLFilterTool.m │ │ │ ├── CLImageToolBase.h │ │ │ ├── CLImageToolBase.m │ │ │ ├── CLRotateTool │ │ │ │ ├── CLRotateTool.h │ │ │ │ └── CLRotateTool.m │ │ │ ├── CLToneCurveTool │ │ │ │ ├── CLToneCurveTool.h │ │ │ │ └── CLToneCurveTool.m │ │ │ └── ToolSettings │ │ │ │ ├── CLCircleView.h │ │ │ │ ├── CLCircleView.m │ │ │ │ ├── CLColorPickerView.h │ │ │ │ ├── CLColorPickerView.m │ │ │ │ ├── CLImageEditorTheme+Private.h │ │ │ │ ├── CLImageEditorTheme+Private.m │ │ │ │ ├── CLImageToolInfo+Private.h │ │ │ │ ├── CLImageToolInfo+Private.m │ │ │ │ ├── CLImageToolProtocol.h │ │ │ │ ├── CLImageToolSettings.h │ │ │ │ ├── CLToolbarMenuItem.h │ │ │ │ ├── CLToolbarMenuItem.m │ │ │ │ ├── UIView+CLImageToolInfo.h │ │ │ │ └── UIView+CLImageToolInfo.m │ │ ├── Utils │ │ │ ├── CLClassList.h │ │ │ ├── CLClassList.m │ │ │ ├── CLSplineInterpolator.h │ │ │ ├── CLSplineInterpolator.m │ │ │ ├── UIDevice+SystemVersion.h │ │ │ ├── UIDevice+SystemVersion.m │ │ │ ├── UIImage+Utility.h │ │ │ ├── UIImage+Utility.m │ │ │ ├── UIView+Frame.h │ │ │ └── UIView+Frame.m │ │ └── ViewController │ │ │ ├── _CLImageEditorViewController.h │ │ │ └── _CLImageEditorViewController.m │ ├── LICENSE │ ├── OptionalImageTools │ │ └── CLTextTool │ │ │ ├── CLFontPickerView.h │ │ │ ├── CLFontPickerView.m │ │ │ ├── CLPickerDrum.h │ │ │ ├── CLPickerDrum.m │ │ │ ├── CLPickerView.h │ │ │ ├── CLPickerView.m │ │ │ ├── CLTextLabel.h │ │ │ ├── CLTextLabel.m │ │ │ ├── CLTextSettingView.h │ │ │ ├── CLTextSettingView.m │ │ │ ├── CLTextTool.h │ │ │ └── CLTextTool.m │ └── README.md │ ├── GRMustache.swift │ ├── LICENSE │ ├── ObjC │ │ ├── GRMustacheKeyAccess.h │ │ ├── GRMustacheKeyAccess.m │ │ └── Mustache.h │ ├── README.md │ └── Sources │ │ ├── Box.swift │ │ ├── Common.swift │ │ ├── Configuration.swift │ │ ├── Context.swift │ │ ├── CoreFunctions.swift │ │ ├── CoreGraphics.swift │ │ ├── EachFilter.swift │ │ ├── Expression.swift │ │ ├── ExpressionGenerator.swift │ │ ├── ExpressionInvocation.swift │ │ ├── ExpressionParser.swift │ │ ├── Fixit-1.1.0.swift │ │ ├── Formatter.swift │ │ ├── Foundation.swift │ │ ├── HTMLEscapeHelper.swift │ │ ├── JavascriptEscapeHelper.swift │ │ ├── Localizer.swift │ │ ├── LocatedTag.swift │ │ ├── Logger.swift │ │ ├── MustacheBox.swift │ │ ├── RenderingEngine.swift │ │ ├── SectionTag.swift │ │ ├── StandardLibrary.swift │ │ ├── SwiftStandardLibrary.swift │ │ ├── Tag.swift │ │ ├── Template.swift │ │ ├── TemplateAST.swift │ │ ├── TemplateASTNode.swift │ │ ├── TemplateCompiler.swift │ │ ├── TemplateGenerator.swift │ │ ├── TemplateParser.swift │ │ ├── TemplateRepository.swift │ │ ├── TemplateToken.swift │ │ ├── URLEscapeHelper.swift │ │ ├── VariableTag.swift │ │ └── ZipFilter.swift │ ├── GitYourFeedbackTests │ ├── GitYourFeedbackTests.swift │ └── Info.plist │ ├── Local Podspecs │ ├── GitYourFeedack.podspec.json │ └── GitYourFeedback.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GitYourFeedback.xcscheme │ └── Target Support Files │ ├── CLImageEditor │ ├── CLImageEditor-dummy.m │ ├── CLImageEditor-prefix.pch │ ├── CLImageEditor-umbrella.h │ ├── CLImageEditor.modulemap │ ├── CLImageEditor.xcconfig │ └── Info.plist │ ├── GRMustache.swift │ ├── GRMustache.swift-dummy.m │ ├── GRMustache.swift-prefix.pch │ ├── GRMustache.swift-umbrella.h │ ├── GRMustache.swift.modulemap │ ├── GRMustache.swift.xcconfig │ └── Info.plist │ ├── GitYourFeedback │ ├── GitYourFeedback-dummy.m │ ├── GitYourFeedback-prefix.pch │ ├── GitYourFeedback-umbrella.h │ ├── GitYourFeedback.modulemap │ ├── GitYourFeedback.xcconfig │ └── Info.plist │ └── Pods-GitYourFeedback_Example │ ├── Info.plist │ ├── Pods-GitYourFeedback_Example-acknowledgements.markdown │ ├── Pods-GitYourFeedback_Example-acknowledgements.plist │ ├── Pods-GitYourFeedback_Example-dummy.m │ ├── Pods-GitYourFeedback_Example-frameworks.sh │ ├── Pods-GitYourFeedback_Example-resources.sh │ ├── Pods-GitYourFeedback_Example-umbrella.h │ ├── Pods-GitYourFeedback_Example.debug.xcconfig │ ├── Pods-GitYourFeedback_Example.modulemap │ └── Pods-GitYourFeedback_Example.release.xcconfig ├── GitYourFeedback.podspec ├── GitYourFeedback ├── Assets │ ├── .gitkeep │ ├── Icons.xcassets │ │ ├── Contents.json │ │ ├── add_photo.imageset │ │ │ ├── Contents.json │ │ │ └── add_photo.pdf │ │ ├── camera.imageset │ │ │ ├── Contents.json │ │ │ └── camera.pdf │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── close.pdf │ │ └── save.imageset │ │ │ ├── Contents.json │ │ │ └── save.pdf │ └── issueTemplate.md └── Classes │ ├── .gitkeep │ ├── CLImageEditorExtension.swift │ ├── Errors.swift │ ├── FeedbackReporter.swift │ ├── FeedbackReportingOptions.swift │ ├── FeedbackViewController.swift │ ├── GoogleStorage.swift │ ├── Helpers.swift │ ├── MediaQuery.swift │ ├── PlaceholderTextView.swift │ ├── Reachability.swift │ ├── UIImageExtension.swift │ └── UIViewControllerExtension.swift ├── GitYourFeedbackDemo.gif ├── GithubScreenshot.png ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── docs ├── .gitkeep ├── index.html ├── params.json └── stylesheets ├── github-light.css ├── normalize.css └── stylesheet.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/.travis.yml -------------------------------------------------------------------------------- /ClientScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/ClientScreenshot.png -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcodeproj/xcshareddata/xcschemes/GitYourFeedack-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcodeproj/xcshareddata/xcschemes/GitYourFeedack-Example.xcscheme -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/GitYourFeedback.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/GitYourFeedback/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/AppDelegate.swift -------------------------------------------------------------------------------- /Example/GitYourFeedback/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/GitYourFeedback/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/Config.swift -------------------------------------------------------------------------------- /Example/GitYourFeedback/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/GitYourFeedback/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/Info.plist -------------------------------------------------------------------------------- /Example/GitYourFeedback/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/GitYourFeedback/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/brightness@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/contrast@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/black/saturation@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/brightness@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/contrast@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLAdjustmentTool/white/saturation@2x.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/band.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_band.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_circle.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/btn_normal.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/circle.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/band.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_band.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_circle.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/btn_normal.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/circle.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLBlurTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/btn_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/btn_rotate.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/btn_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/btn_rotate.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLClippingTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/btn_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/btn_eraser.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/btn_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/btn_eraser.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLDrawTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLBloomEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLBloomEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLEffectBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLEffectBase.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLGloomEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLGloomEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHighlightShadowEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHighlightShadowEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHueEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLHueEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPixellateEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPixellateEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPosterizeEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLPosterizeEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLSpotEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/CLSpotEffect.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEffectTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Copyright -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/001.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/002.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/003.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/004.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/005.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/006.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/007.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/008.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/009.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/010.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/011.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/012.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/013.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/014.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/015.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/016.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/Emoticons/017.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLEmoticonTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLFilterTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_off.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_chain_on.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_height.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/btn_width.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_off.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_chain_on.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_height.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/btn_width.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLResizeTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip1.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_flip2.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/btn_rotate.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip1.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_flip2.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/btn_rotate.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLRotateTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/btn_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/btn_eraser.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/btn_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/btn_eraser.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLSplashTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/Copyright -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/black/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/black/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/001.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/002.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/003.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/004.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/005.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/006.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/007.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/008.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/009.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/010.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/011.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/stickers/012.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/white/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/white/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLStickerTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_add.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_center.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_left.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_align_right.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/btn_font.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_add.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_center.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_left.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_align_right.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_delete.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/btn_font.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLTextTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/btn_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/btn_arrow.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/btn_reset.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/black/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/btn_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/btn_arrow.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/btn_reset.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/CLToneCurveTool/white/icon.png -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.bundle/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditor.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditorTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditorTheme.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageEditorTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageEditorTheme.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageToolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageToolInfo.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/CLImageToolInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/CLImageToolInfo.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLAdjustmentTool/CLAdjustmentTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLAdjustmentTool/CLAdjustmentTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLAdjustmentTool/CLAdjustmentTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLAdjustmentTool/CLAdjustmentTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLBlurTool/CLBlurTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLBlurTool/CLBlurTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLBlurTool/CLBlurTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLBlurTool/CLBlurTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLClippingTool/CLClippingTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLClippingTool/CLClippingTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLClippingTool/CLClippingTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLClippingTool/CLClippingTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLDrawTool/CLDrawTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLDrawTool/CLDrawTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLDrawTool/CLDrawTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLDrawTool/CLDrawTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLBloomEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLBloomEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLBloomEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLBloomEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLGloomEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLGloomEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLGloomEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLGloomEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHighlightShadowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHighlightShadowEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHighlightShadowEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHighlightShadowEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHueEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHueEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHueEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLHueEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPixellateEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPixellateEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPixellateEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPixellateEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPosterizeEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPosterizeEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPosterizeEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLPosterizeEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLSpotEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLSpotEffect.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLSpotEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffect/CLSpotEffect.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectBase.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectBase.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLEffectTool/CLEffectTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterBase.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterBase.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLFilterTool/CLFilterTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLImageToolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLImageToolBase.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLImageToolBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLImageToolBase.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLRotateTool/CLRotateTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLRotateTool/CLRotateTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLRotateTool/CLRotateTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLRotateTool/CLRotateTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLToneCurveTool/CLToneCurveTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLToneCurveTool/CLToneCurveTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLToneCurveTool/CLToneCurveTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/CLToneCurveTool/CLToneCurveTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLCircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLCircleView.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLCircleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLCircleView.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLColorPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLColorPickerView.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLColorPickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLColorPickerView.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageEditorTheme+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageEditorTheme+Private.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageEditorTheme+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageEditorTheme+Private.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolInfo+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolInfo+Private.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolInfo+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolInfo+Private.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolProtocol.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLImageToolSettings.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLToolbarMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLToolbarMenuItem.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLToolbarMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/CLToolbarMenuItem.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/UIView+CLImageToolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/UIView+CLImageToolInfo.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/UIView+CLImageToolInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ImageTools/ToolSettings/UIView+CLImageToolInfo.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/CLClassList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/CLClassList.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/CLClassList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/CLClassList.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/CLSplineInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/CLSplineInterpolator.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/CLSplineInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/CLSplineInterpolator.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIDevice+SystemVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIDevice+SystemVersion.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIDevice+SystemVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIDevice+SystemVersion.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIImage+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIImage+Utility.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIImage+Utility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIImage+Utility.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIView+Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIView+Frame.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/Utils/UIView+Frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/Utils/UIView+Frame.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ViewController/_CLImageEditorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ViewController/_CLImageEditorViewController.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/CLImageEditor/ViewController/_CLImageEditorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/CLImageEditor/ViewController/_CLImageEditorViewController.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/LICENSE -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLFontPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLFontPickerView.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLFontPickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLFontPickerView.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerDrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerDrum.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerDrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerDrum.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerView.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLPickerView.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextLabel.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextLabel.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextSettingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextSettingView.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextSettingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextSettingView.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextTool.h -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/OptionalImageTools/CLTextTool/CLTextTool.m -------------------------------------------------------------------------------- /Example/Pods/CLImageEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/CLImageEditor/README.md -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/LICENSE -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/ObjC/GRMustacheKeyAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/ObjC/GRMustacheKeyAccess.h -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/ObjC/GRMustacheKeyAccess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/ObjC/GRMustacheKeyAccess.m -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/ObjC/Mustache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/ObjC/Mustache.h -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/README.md -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Box.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Common.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Context.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/CoreFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/CoreFunctions.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/CoreGraphics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/CoreGraphics.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/EachFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/EachFilter.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/ExpressionGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/ExpressionGenerator.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/ExpressionInvocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/ExpressionInvocation.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/ExpressionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/ExpressionParser.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Fixit-1.1.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Fixit-1.1.0.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Formatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Formatter.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Foundation.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/HTMLEscapeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/HTMLEscapeHelper.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/JavascriptEscapeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/JavascriptEscapeHelper.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Localizer.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/LocatedTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/LocatedTag.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Logger.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/MustacheBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/MustacheBox.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/RenderingEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/RenderingEngine.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/SectionTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/SectionTag.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/StandardLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/StandardLibrary.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/SwiftStandardLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/SwiftStandardLibrary.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Tag.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/Template.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateAST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateAST.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateASTNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateASTNode.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateCompiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateCompiler.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateGenerator.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateParser.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateRepository.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/TemplateToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/TemplateToken.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/URLEscapeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/URLEscapeHelper.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/VariableTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/VariableTag.swift -------------------------------------------------------------------------------- /Example/Pods/GRMustache.swift/Sources/ZipFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GRMustache.swift/Sources/ZipFilter.swift -------------------------------------------------------------------------------- /Example/Pods/GitYourFeedbackTests/GitYourFeedbackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GitYourFeedbackTests/GitYourFeedbackTests.swift -------------------------------------------------------------------------------- /Example/Pods/GitYourFeedbackTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/GitYourFeedbackTests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GitYourFeedack.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Local Podspecs/GitYourFeedack.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GitYourFeedback.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Local Podspecs/GitYourFeedback.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/GitYourFeedback.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/GitYourFeedback.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/CLImageEditor-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/CLImageEditor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/CLImageEditor.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/CLImageEditor.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/CLImageEditor.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLImageEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/CLImageEditor/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/GRMustache.swift.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GRMustache.swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GRMustache.swift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/GitYourFeedback.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GitYourFeedback/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/GitYourFeedback/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/Example/Pods/Target Support Files/Pods-GitYourFeedback_Example/Pods-GitYourFeedback_Example.release.xcconfig -------------------------------------------------------------------------------- /GitYourFeedback.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback.podspec -------------------------------------------------------------------------------- /GitYourFeedback/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/add_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/add_photo.imageset/Contents.json -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/add_photo.imageset/add_photo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/add_photo.imageset/add_photo.pdf -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/camera.imageset/camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/camera.imageset/camera.pdf -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/close.imageset/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/close.imageset/close.pdf -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/save.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/save.imageset/Contents.json -------------------------------------------------------------------------------- /GitYourFeedback/Assets/Icons.xcassets/save.imageset/save.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/Icons.xcassets/save.imageset/save.pdf -------------------------------------------------------------------------------- /GitYourFeedback/Assets/issueTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Assets/issueTemplate.md -------------------------------------------------------------------------------- /GitYourFeedback/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitYourFeedback/Classes/CLImageEditorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/CLImageEditorExtension.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/Errors.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/FeedbackReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/FeedbackReporter.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/FeedbackReportingOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/FeedbackReportingOptions.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/FeedbackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/FeedbackViewController.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/GoogleStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/GoogleStorage.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/Helpers.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/MediaQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/MediaQuery.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/PlaceholderTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/PlaceholderTextView.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/Reachability.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/UIImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/UIImageExtension.swift -------------------------------------------------------------------------------- /GitYourFeedback/Classes/UIViewControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedback/Classes/UIViewControllerExtension.swift -------------------------------------------------------------------------------- /GitYourFeedbackDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GitYourFeedbackDemo.gif -------------------------------------------------------------------------------- /GithubScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/GithubScreenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/docs/params.json -------------------------------------------------------------------------------- /docs/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/docs/stylesheets/github-light.css -------------------------------------------------------------------------------- /docs/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/docs/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabek/GitYourFeedback/HEAD/docs/stylesheets/stylesheet.css --------------------------------------------------------------------------------