├── .eslintrc ├── .gitignore ├── .travis.yml ├── Alchemy.png ├── Alchemy.yml ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── bin ├── fetchPhotosorcery ├── photosorcery │ ├── photosorcery-darwin │ ├── photosorcery-linux │ └── photosorcery-windows.exe └── release.sh ├── img ├── failure.png ├── iconTemplate.png ├── iconTemplate@2x.png ├── out.icns └── success.png ├── index.html ├── main.js ├── package.json ├── src ├── api.js ├── components │ ├── Converter.jsx │ ├── FileSorter.jsx │ ├── Message.jsx │ ├── Staging.jsx │ ├── Tray.jsx │ └── svg │ │ ├── ArrowDown.jsx │ │ ├── Cancel.jsx │ │ ├── Convert.jsx │ │ ├── Converting.jsx │ │ ├── Done.jsx │ │ ├── Failed.jsx │ │ ├── Idle.jsx │ │ ├── Merge.jsx │ │ └── Settings.jsx ├── helpers │ ├── configure.js │ ├── constants.js │ ├── functional.js │ ├── menu.js │ ├── notifier │ │ ├── index.js │ │ └── text.json │ └── util.js └── index.jsx ├── styles ├── color.scss ├── index.scss └── keyframe.scss ├── test └── util.test.js ├── webpack.config.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | packaged 4 | 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/.travis.yml -------------------------------------------------------------------------------- /Alchemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/Alchemy.png -------------------------------------------------------------------------------- /Alchemy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/Alchemy.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/README.md -------------------------------------------------------------------------------- /bin/fetchPhotosorcery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/bin/fetchPhotosorcery -------------------------------------------------------------------------------- /bin/photosorcery/photosorcery-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/bin/photosorcery/photosorcery-darwin -------------------------------------------------------------------------------- /bin/photosorcery/photosorcery-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/bin/photosorcery/photosorcery-linux -------------------------------------------------------------------------------- /bin/photosorcery/photosorcery-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/bin/photosorcery/photosorcery-windows.exe -------------------------------------------------------------------------------- /bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/bin/release.sh -------------------------------------------------------------------------------- /img/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/img/failure.png -------------------------------------------------------------------------------- /img/iconTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/img/iconTemplate.png -------------------------------------------------------------------------------- /img/iconTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/img/iconTemplate@2x.png -------------------------------------------------------------------------------- /img/out.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/img/out.icns -------------------------------------------------------------------------------- /img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/img/success.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/package.json -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/api.js -------------------------------------------------------------------------------- /src/components/Converter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/Converter.jsx -------------------------------------------------------------------------------- /src/components/FileSorter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/FileSorter.jsx -------------------------------------------------------------------------------- /src/components/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/Message.jsx -------------------------------------------------------------------------------- /src/components/Staging.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/Staging.jsx -------------------------------------------------------------------------------- /src/components/Tray.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/Tray.jsx -------------------------------------------------------------------------------- /src/components/svg/ArrowDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/ArrowDown.jsx -------------------------------------------------------------------------------- /src/components/svg/Cancel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Cancel.jsx -------------------------------------------------------------------------------- /src/components/svg/Convert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Convert.jsx -------------------------------------------------------------------------------- /src/components/svg/Converting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Converting.jsx -------------------------------------------------------------------------------- /src/components/svg/Done.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Done.jsx -------------------------------------------------------------------------------- /src/components/svg/Failed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Failed.jsx -------------------------------------------------------------------------------- /src/components/svg/Idle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Idle.jsx -------------------------------------------------------------------------------- /src/components/svg/Merge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Merge.jsx -------------------------------------------------------------------------------- /src/components/svg/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/components/svg/Settings.jsx -------------------------------------------------------------------------------- /src/helpers/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/configure.js -------------------------------------------------------------------------------- /src/helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/constants.js -------------------------------------------------------------------------------- /src/helpers/functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/functional.js -------------------------------------------------------------------------------- /src/helpers/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/menu.js -------------------------------------------------------------------------------- /src/helpers/notifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/notifier/index.js -------------------------------------------------------------------------------- /src/helpers/notifier/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/notifier/text.json -------------------------------------------------------------------------------- /src/helpers/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/helpers/util.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/src/index.jsx -------------------------------------------------------------------------------- /styles/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/styles/color.scss -------------------------------------------------------------------------------- /styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/styles/index.scss -------------------------------------------------------------------------------- /styles/keyframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/styles/keyframe.scss -------------------------------------------------------------------------------- /test/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/test/util.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnlabs/alchemy/HEAD/yarn.lock --------------------------------------------------------------------------------