├── .github └── FUNDING.yml ├── .gitignore ├── GifCapture copy-Info.plist ├── GifCapture.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── GifCapture.xcscheme ├── GifCapture.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── GifCapture ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128@1x.png │ │ ├── icon_128@2x.png │ │ ├── icon_16@1x.png │ │ ├── icon_16@2x.png │ │ ├── icon_256@1x.png │ │ ├── icon_256@2x.png │ │ ├── icon_32@1x.png │ │ ├── icon_32@2x.png │ │ ├── icon_512@1x.png │ │ └── icon_512@2x.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Camera │ ├── CameraMan.swift │ ├── Saver.swift │ └── State.swift ├── Extensions │ └── Window+Extensions.swift ├── GifCapture.entitlements ├── Info.plist ├── Main │ ├── MainViewController.swift │ └── MainWindowController.swift ├── Preference │ ├── Preferences.storyboard │ └── PreferencesViewController.swift └── Utils │ ├── Config.swift │ ├── LoadingIndicator.swift │ └── Utils.swift ├── GifCaptureTests ├── GifCaptureTests.swift └── Info.plist ├── GifCaptureUITests ├── GifCaptureUITests.swift └── Info.plist ├── Images ├── Icon.png ├── g1.gif ├── g2.gif ├── g3.gif └── gifcapture.png ├── LICENSE.md ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ └── NSGIF.podspec.json ├── Manifest.lock ├── NSGIF │ ├── LICENSE │ ├── NSGIF │ │ ├── NSGIF.h │ │ └── NSGIF.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── NSGIF │ ├── Info.plist │ ├── NSGIF-Info.plist │ ├── NSGIF-dummy.m │ ├── NSGIF-prefix.pch │ ├── NSGIF-umbrella.h │ ├── NSGIF.modulemap │ └── NSGIF.xcconfig │ ├── Pods-GifCapture │ ├── Info.plist │ ├── Pods-GifCapture-Info.plist │ ├── Pods-GifCapture-acknowledgements.markdown │ ├── Pods-GifCapture-acknowledgements.plist │ ├── Pods-GifCapture-dummy.m │ ├── Pods-GifCapture-frameworks.sh │ ├── Pods-GifCapture-resources.sh │ ├── Pods-GifCapture-umbrella.h │ ├── Pods-GifCapture.debug.xcconfig │ ├── Pods-GifCapture.modulemap │ └── Pods-GifCapture.release.xcconfig │ ├── Pods-GifCaptureTests │ ├── Info.plist │ ├── Pods-GifCaptureTests-Info.plist │ ├── Pods-GifCaptureTests-acknowledgements.markdown │ ├── Pods-GifCaptureTests-acknowledgements.plist │ ├── Pods-GifCaptureTests-dummy.m │ ├── Pods-GifCaptureTests-frameworks.sh │ ├── Pods-GifCaptureTests-resources.sh │ ├── Pods-GifCaptureTests-umbrella.h │ ├── Pods-GifCaptureTests.debug.xcconfig │ ├── Pods-GifCaptureTests.modulemap │ └── Pods-GifCaptureTests.release.xcconfig │ └── Pods-GifCaptureUITests │ ├── Info.plist │ ├── Pods-GifCaptureUITests-Info.plist │ ├── Pods-GifCaptureUITests-acknowledgements.markdown │ ├── Pods-GifCaptureUITests-acknowledgements.plist │ ├── Pods-GifCaptureUITests-dummy.m │ ├── Pods-GifCaptureUITests-frameworks.sh │ ├── Pods-GifCaptureUITests-resources.sh │ ├── Pods-GifCaptureUITests-umbrella.h │ ├── Pods-GifCaptureUITests.debug.xcconfig │ ├── Pods-GifCaptureUITests.modulemap │ └── Pods-GifCaptureUITests.release.xcconfig ├── README.md └── Screenshots ├── s1.png ├── s2.png └── s3.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/.gitignore -------------------------------------------------------------------------------- /GifCapture copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture copy-Info.plist -------------------------------------------------------------------------------- /GifCapture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GifCapture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GifCapture.xcodeproj/xcshareddata/xcschemes/GifCapture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture.xcodeproj/xcshareddata/xcschemes/GifCapture.xcscheme -------------------------------------------------------------------------------- /GifCapture.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GifCapture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GifCapture/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/AppDelegate.swift -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png -------------------------------------------------------------------------------- /GifCapture/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GifCapture/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GifCapture/Camera/CameraMan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Camera/CameraMan.swift -------------------------------------------------------------------------------- /GifCapture/Camera/Saver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Camera/Saver.swift -------------------------------------------------------------------------------- /GifCapture/Camera/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Camera/State.swift -------------------------------------------------------------------------------- /GifCapture/Extensions/Window+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Extensions/Window+Extensions.swift -------------------------------------------------------------------------------- /GifCapture/GifCapture.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/GifCapture.entitlements -------------------------------------------------------------------------------- /GifCapture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Info.plist -------------------------------------------------------------------------------- /GifCapture/Main/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Main/MainViewController.swift -------------------------------------------------------------------------------- /GifCapture/Main/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Main/MainWindowController.swift -------------------------------------------------------------------------------- /GifCapture/Preference/Preferences.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Preference/Preferences.storyboard -------------------------------------------------------------------------------- /GifCapture/Preference/PreferencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Preference/PreferencesViewController.swift -------------------------------------------------------------------------------- /GifCapture/Utils/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Utils/Config.swift -------------------------------------------------------------------------------- /GifCapture/Utils/LoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Utils/LoadingIndicator.swift -------------------------------------------------------------------------------- /GifCapture/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCapture/Utils/Utils.swift -------------------------------------------------------------------------------- /GifCaptureTests/GifCaptureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCaptureTests/GifCaptureTests.swift -------------------------------------------------------------------------------- /GifCaptureTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCaptureTests/Info.plist -------------------------------------------------------------------------------- /GifCaptureUITests/GifCaptureUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCaptureUITests/GifCaptureUITests.swift -------------------------------------------------------------------------------- /GifCaptureUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/GifCaptureUITests/Info.plist -------------------------------------------------------------------------------- /Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Images/Icon.png -------------------------------------------------------------------------------- /Images/g1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Images/g1.gif -------------------------------------------------------------------------------- /Images/g2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Images/g2.gif -------------------------------------------------------------------------------- /Images/g3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Images/g3.gif -------------------------------------------------------------------------------- /Images/gifcapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Images/gifcapture.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Local Podspecs/NSGIF.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Local Podspecs/NSGIF.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/NSGIF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/NSGIF/LICENSE -------------------------------------------------------------------------------- /Pods/NSGIF/NSGIF/NSGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/NSGIF/NSGIF/NSGIF.h -------------------------------------------------------------------------------- /Pods/NSGIF/NSGIF/NSGIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/NSGIF/NSGIF/NSGIF.m -------------------------------------------------------------------------------- /Pods/NSGIF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/NSGIF/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/NSGIF/NSGIF.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/NSGIF/NSGIF.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCapture/Pods-GifCapture.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureTests/Pods-GifCaptureTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Pods/Target Support Files/Pods-GifCaptureUITests/Pods-GifCaptureUITests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Screenshots/s1.png -------------------------------------------------------------------------------- /Screenshots/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Screenshots/s2.png -------------------------------------------------------------------------------- /Screenshots/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/GifCapture/HEAD/Screenshots/s3.png --------------------------------------------------------------------------------