├── .babelrc ├── .compilerc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── crimp.icns ├── package.json ├── src ├── app │ ├── App.js │ ├── components │ │ ├── Busy │ │ │ └── index.js │ │ ├── Button │ │ │ └── index.js │ │ ├── Dropzone │ │ │ ├── DropzoneIcons.js │ │ │ ├── DropzoneSubtitle.js │ │ │ ├── DropzoneTitle.js │ │ │ ├── icons │ │ │ │ ├── gif.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── image.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── solid-gif.svg │ │ │ │ ├── solid-image.svg │ │ │ │ ├── solid-svg.svg │ │ │ │ ├── solid-tick.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── svg.svg │ │ │ │ └── tick.svg │ │ │ └── index.js │ │ ├── Loader │ │ │ ├── CheckIcon.jsx │ │ │ ├── FileIcon.jsx │ │ │ ├── PlayIcon.jsx │ │ │ ├── Processor.jsx │ │ │ ├── SVGIcon.jsx │ │ │ └── index.js │ │ ├── Report │ │ │ ├── Report.jsx │ │ │ ├── ReportList.jsx │ │ │ ├── ReportSummary.jsx │ │ │ ├── icons │ │ │ │ └── check.svg │ │ │ ├── image.png │ │ │ └── index.jsx │ │ ├── Title │ │ │ └── index.js │ │ ├── Utils │ │ │ └── index.jsx │ │ └── Widget │ │ │ ├── Widget.js │ │ │ ├── WidgetBody.js │ │ │ ├── WidgetFooter.js │ │ │ ├── WidgetHeader.js │ │ │ └── index.js │ └── index.html └── main │ ├── index.js │ ├── ipc │ ├── FilesHandler.js │ └── index.js │ └── menu │ ├── About.js │ ├── Dev.js │ ├── Help.js │ ├── Window.js │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.compilerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/.compilerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | yarn-error.log 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/README.md -------------------------------------------------------------------------------- /assets/crimp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/assets/crimp.icns -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/package.json -------------------------------------------------------------------------------- /src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/App.js -------------------------------------------------------------------------------- /src/app/components/Busy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Busy/index.js -------------------------------------------------------------------------------- /src/app/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Button/index.js -------------------------------------------------------------------------------- /src/app/components/Dropzone/DropzoneIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/DropzoneIcons.js -------------------------------------------------------------------------------- /src/app/components/Dropzone/DropzoneSubtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/DropzoneSubtitle.js -------------------------------------------------------------------------------- /src/app/components/Dropzone/DropzoneTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/DropzoneTitle.js -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/gif.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/hand.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/image.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/logo.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/solid-gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/solid-gif.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/solid-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/solid-image.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/solid-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/solid-svg.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/solid-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/solid-tick.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/stop.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/svg.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/icons/tick.svg -------------------------------------------------------------------------------- /src/app/components/Dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Dropzone/index.js -------------------------------------------------------------------------------- /src/app/components/Loader/CheckIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/CheckIcon.jsx -------------------------------------------------------------------------------- /src/app/components/Loader/FileIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/FileIcon.jsx -------------------------------------------------------------------------------- /src/app/components/Loader/PlayIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/PlayIcon.jsx -------------------------------------------------------------------------------- /src/app/components/Loader/Processor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/Processor.jsx -------------------------------------------------------------------------------- /src/app/components/Loader/SVGIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/SVGIcon.jsx -------------------------------------------------------------------------------- /src/app/components/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Loader/index.js -------------------------------------------------------------------------------- /src/app/components/Report/Report.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/Report.jsx -------------------------------------------------------------------------------- /src/app/components/Report/ReportList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/ReportList.jsx -------------------------------------------------------------------------------- /src/app/components/Report/ReportSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/ReportSummary.jsx -------------------------------------------------------------------------------- /src/app/components/Report/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/icons/check.svg -------------------------------------------------------------------------------- /src/app/components/Report/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/image.png -------------------------------------------------------------------------------- /src/app/components/Report/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Report/index.jsx -------------------------------------------------------------------------------- /src/app/components/Title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Title/index.js -------------------------------------------------------------------------------- /src/app/components/Utils/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Utils/index.jsx -------------------------------------------------------------------------------- /src/app/components/Widget/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Widget/Widget.js -------------------------------------------------------------------------------- /src/app/components/Widget/WidgetBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Widget/WidgetBody.js -------------------------------------------------------------------------------- /src/app/components/Widget/WidgetFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Widget/WidgetFooter.js -------------------------------------------------------------------------------- /src/app/components/Widget/WidgetHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Widget/WidgetHeader.js -------------------------------------------------------------------------------- /src/app/components/Widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/components/Widget/index.js -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/app/index.html -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/ipc/FilesHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/ipc/FilesHandler.js -------------------------------------------------------------------------------- /src/main/ipc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/ipc/index.js -------------------------------------------------------------------------------- /src/main/menu/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/menu/About.js -------------------------------------------------------------------------------- /src/main/menu/Dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/menu/Dev.js -------------------------------------------------------------------------------- /src/main/menu/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/menu/Help.js -------------------------------------------------------------------------------- /src/main/menu/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/menu/Window.js -------------------------------------------------------------------------------- /src/main/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/src/main/menu/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghosh/Crimp/HEAD/yarn.lock --------------------------------------------------------------------------------